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
2746
void bic_lookup(cpu_set_t *ret_set, char *name_list, enum show_hide_mode mode)
tools/power/x86/turbostat/turbostat.c
2750
while (name_list) {
tools/power/x86/turbostat/turbostat.c
2753
comma = strchr(name_list, ',');
tools/power/x86/turbostat/turbostat.c
2759
if (!strcmp(name_list, bic[i].name)) {
tools/power/x86/turbostat/turbostat.c
2763
if (!strcmp(name_list, "all")) {
tools/power/x86/turbostat/turbostat.c
2766
} else if (!strcmp(name_list, "topology")) {
tools/power/x86/turbostat/turbostat.c
2769
} else if (!strcmp(name_list, "power")) {
tools/power/x86/turbostat/turbostat.c
2772
} else if (!strcmp(name_list, "idle")) {
tools/power/x86/turbostat/turbostat.c
2775
} else if (!strcmp(name_list, "cache")) {
tools/power/x86/turbostat/turbostat.c
2778
} else if (!strcmp(name_list, "llc")) {
tools/power/x86/turbostat/turbostat.c
2781
} else if (!strcmp(name_list, "swidle")) {
tools/power/x86/turbostat/turbostat.c
2784
} else if (!strcmp(name_list, "sysfs")) { /* legacy compatibility */
tools/power/x86/turbostat/turbostat.c
2787
} else if (!strcmp(name_list, "hwidle")) {
tools/power/x86/turbostat/turbostat.c
2790
} else if (!strcmp(name_list, "frequency")) {
tools/power/x86/turbostat/turbostat.c
2793
} else if (!strcmp(name_list, "other")) {
tools/power/x86/turbostat/turbostat.c
2800
deferred_add_names[deferred_add_index++] = name_list;
tools/power/x86/turbostat/turbostat.c
2802
fprintf(stderr, "More than max %d un-recognized --add options '%s'\n", MAX_DEFERRED, name_list);
tools/power/x86/turbostat/turbostat.c
2807
deferred_skip_names[deferred_skip_index++] = name_list;
tools/power/x86/turbostat/turbostat.c
2809
fprintf(stderr, "deferred \"%s\"\n", name_list);
tools/power/x86/turbostat/turbostat.c
2811
fprintf(stderr, "More than max %d un-recognized --skip options '%s'\n", MAX_DEFERRED, name_list);
tools/power/x86/turbostat/turbostat.c
2818
name_list = comma;
tools/power/x86/turbostat/turbostat.c
2819
if (name_list)
tools/power/x86/turbostat/turbostat.c
2820
name_list++;