Symbol: name_list
drivers/video/fbdev/atafb.c
530
char ***name_list;
drivers/video/fbdev/atafb.c
534
name_list = fb_var_names;
drivers/video/fbdev/atafb.c
536
name = *name_list++;
fs/nfsd/nfs4recover.c
202
struct name_list *entry;
fs/nfsd/nfs4recover.c
206
entry = kmalloc_obj(struct name_list);
fs/nfsd/nfs4recover.c
224
struct name_list *entry, *tmp;
tools/power/x86/turbostat/turbostat.c
2783
void bic_lookup(cpu_set_t *ret_set, char *name_list, enum show_hide_mode mode)
tools/power/x86/turbostat/turbostat.c
2787
while (name_list) {
tools/power/x86/turbostat/turbostat.c
2790
comma = strchr(name_list, ',');
tools/power/x86/turbostat/turbostat.c
2796
if (!strcmp(name_list, bic[i].name)) {
tools/power/x86/turbostat/turbostat.c
2800
if (!strcmp(name_list, "all")) {
tools/power/x86/turbostat/turbostat.c
2803
} else if (!strcmp(name_list, "topology")) {
tools/power/x86/turbostat/turbostat.c
2806
} else if (!strcmp(name_list, "power")) {
tools/power/x86/turbostat/turbostat.c
2809
} else if (!strcmp(name_list, "idle")) {
tools/power/x86/turbostat/turbostat.c
2812
} else if (!strcmp(name_list, "cache")) {
tools/power/x86/turbostat/turbostat.c
2815
} else if (!strcmp(name_list, "llc")) {
tools/power/x86/turbostat/turbostat.c
2818
} else if (!strcmp(name_list, "swidle")) {
tools/power/x86/turbostat/turbostat.c
2821
} else if (!strcmp(name_list, "sysfs")) { /* legacy compatibility */
tools/power/x86/turbostat/turbostat.c
2824
} else if (!strcmp(name_list, "hwidle")) {
tools/power/x86/turbostat/turbostat.c
2827
} else if (!strcmp(name_list, "frequency")) {
tools/power/x86/turbostat/turbostat.c
2830
} else if (!strcmp(name_list, "other")) {
tools/power/x86/turbostat/turbostat.c
2837
deferred_add_names[deferred_add_index++] = name_list;
tools/power/x86/turbostat/turbostat.c
2839
fprintf(stderr, "More than max %d un-recognized --add options '%s'\n", MAX_DEFERRED, name_list);
tools/power/x86/turbostat/turbostat.c
2844
deferred_skip_names[deferred_skip_index++] = name_list;
tools/power/x86/turbostat/turbostat.c
2846
fprintf(stderr, "deferred \"%s\"\n", name_list);
tools/power/x86/turbostat/turbostat.c
2848
fprintf(stderr, "More than max %d un-recognized --skip options '%s'\n", MAX_DEFERRED, name_list);
tools/power/x86/turbostat/turbostat.c
2855
name_list = comma;
tools/power/x86/turbostat/turbostat.c
2856
if (name_list)
tools/power/x86/turbostat/turbostat.c
2857
name_list++;