Home
last modified time | relevance | path

Searched refs:list (Results 1 – 25 of 35) sorted by relevance

12

/scripts/kconfig/lxdialog/
Dchecklist.c122 WINDOW *dialog, *list; in dialog_checklist() local
170 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist()
173 keypad(list, TRUE); in dialog_checklist()
196 print_item(list, i, i == choice); in dialog_checklist()
205 wnoutrefresh(list); in dialog_checklist()
227 print_item(list, 0, FALSE); in dialog_checklist()
228 scrollok(list, TRUE); in dialog_checklist()
229 wscrl(list, -1); in dialog_checklist()
230 scrollok(list, FALSE); in dialog_checklist()
234 print_item(list, 0, TRUE); in dialog_checklist()
[all …]
/scripts/dtc/libfdt/
Dfdt_ro.c543 const char *list, *end; in fdt_stringlist_count() local
546 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_count()
547 if (!list) in fdt_stringlist_count()
550 end = list + length; in fdt_stringlist_count()
552 while (list < end) { in fdt_stringlist_count()
553 length = strnlen(list, end - list) + 1; in fdt_stringlist_count()
556 if (list + length > end) in fdt_stringlist_count()
559 list += length; in fdt_stringlist_count()
570 const char *list, *end; in fdt_stringlist_search() local
572 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_search()
[all …]
/scripts/kconfig/
Dqconf.cc106 ConfigList* list; in updateMenu() local
113 list = listView(); in updateMenu()
115 setPixmap(promptColIdx, list->menuBackPix); in updateMenu()
126 if (list->mode == singleMode || list->mode == symbolMode) { in updateMenu()
130 if (sym && list->rootEntry == menu) in updateMenu()
132 setPixmap(promptColIdx, list->menuPix); in updateMenu()
156 if (!sym_is_changable(sym) && list->optMode == normalOpt) { in updateMenu()
167 setPixmap(promptColIdx, list->choiceYesPix); in updateMenu()
169 setPixmap(promptColIdx, list->symbolYesPix); in updateMenu()
174 setPixmap(promptColIdx, list->symbolModPix); in updateMenu()
[all …]
Dmenu.c44 last_entry_ptr = &rootmenu.list; in _menu_init()
72 last_entry_ptr = &current_entry->list; in menu_add_menu()
290 if (parent->list) { in menu_finalize()
295 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
303 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
314 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
339 for (menu = parent->list; menu; menu = menu->next) in menu_finalize()
368 parent->list = parent->next; in menu_finalize()
375 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
415 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in menu_finalize()
[all …]
Dqconf.h217 bool showName(void) const { return list->showName; } in showName()
218 bool showRange(void) const { return list->showRange; } in showRange()
219 bool showData(void) const { return list->showData; } in showData()
230 ConfigList* list;
285 ConfigView* list; variable
Dconf.c274 for (child = menu->list; child; child = child->next) { in conf_choice()
333 for (child = menu->list; child; child = child->next) { in conf_choice()
346 for (child = child->list; child; child = child->next) { in conf_choice()
415 for (child = menu->list; child; child = child->next) in conf()
446 for (child = menu->list; child; child = child->next) in check_conf()
Dconfdata.c681 menu = rootmenu.list; in conf_write_defconfig()
723 if (menu->list != NULL) { in conf_write_defconfig()
724 menu = menu->list; in conf_write_defconfig()
790 menu = rootmenu.list; in conf_write()
811 if (menu->list) { in conf_write()
812 menu = menu->list; in conf_write()
Dmconf.c535 for (child = menu->list; child; child = child->next) { in build_conf()
568 if (def_menu->list) { in build_conf()
640 for (child = menu->list; child; child = child->next) in build_conf()
813 for (child = menu->list; child; child = child->next) { in conf_choice()
Dzconf.y696 menu = rootmenu.list; in zconfdump()
722 if (menu->list) in zconfdump()
723 menu = menu->list; in zconfdump()
/scripts/
Dexport_report.pl29 my $list = $href->{$mod};
31 foreach my $sym (sort numerically @{$list}) {
157 foreach my $list (sort alphabetically values(%SYMBOL)) {
158 my ($module, $value, $symbol, $gpl) = @{$list};
177 my $list = $MODULE{$thismod};
181 foreach my $symbol (@{$list}) {
Danalyze_suspend.py311 list = fp.read().split('\n')
313 for i in list:
339 def setFtraceFilterFunctions(self, list): argument
344 for i in list:
729 list = self.dmesg[phase]['list']
730 for dev in list:
731 d = list[dev]
739 list = self.dmesg[phase]['list']
740 for devname in list:
741 dev = list[devname]
[all …]
Dgcc-ld19 --version-script|--dynamic-list|--version-exports-symbol|--wrap|-m)
Dgen_initramfs_list.sh27 <cpio_source> File list or directory for cpio archive.
30 -d Output the default cpio list.
Dget_maintainer.pl1498 my @list = @$list_ref;
1507 foreach my $entry (@list) {
1530 foreach my $entry (@list) {
1633 if ($list[$i]->[1] =~ /^(maintainer|supporter)/i);
1638 if ($list[$i]->[1] =~ /^(author|commit|signer)/i);
1643 if ($list[$i]->[1] =~ /^(open list)/i);
1648 if ($list[$i]->[1] =~ /^(subscriber list)/i);
1767 foreach my $entry (@list) {
1769 push(@new_emailto, $list[$count]);
/scripts/genksyms/
Dgenksyms.c69 static void print_list(FILE * f, struct string_list *list);
504 static void print_node(FILE * f, struct string_list *list) in print_node() argument
506 if (symbol_types[list->tag].n) { in print_node()
507 putc(symbol_types[list->tag].n, f); in print_node()
510 fputs(list->string, f); in print_node()
513 static void print_list(FILE * f, struct string_list *list) in print_list() argument
519 if (list == NULL) { in print_list()
524 tmp = list; in print_list()
532 (*tmp2--) = list; in print_list()
533 while ((list = list->next) != NULL) in print_list()
[all …]
Dgenksyms.h69 void free_node(struct string_list *list);
/scripts/coccinelle/misc/
Dwarn.cocci44 expression list es;
54 expression list ok1.es;
93 expression list es;
103 expression list ok2.es;
/scripts/gdb/linux/
Dcpus.py133 gdb.write("Possible CPUs : {}\n".format(list(each_possible_cpu())))
134 gdb.write("Present CPUs : {}\n".format(list(each_present_cpu())))
135 gdb.write("Online CPUs : {}\n".format(list(each_online_cpu())))
136 gdb.write("Active CPUs : {}\n".format(list(each_active_cpu())))
/scripts/dtc/
Dlivetree.c77 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument
81 first->next = list; in chain_property()
219 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
223 first->next_sibling = list; in chain_node()
312 struct reserve_info *list) in chain_reserve_entry() argument
316 first->next = list; in chain_reserve_entry()
320 struct reserve_info *add_reserve_entry(struct reserve_info *list, in add_reserve_entry() argument
327 if (! list) in add_reserve_entry()
330 for (last = list; last->next; last = last->next) in add_reserve_entry()
335 return list; in add_reserve_entry()
Ddtc.h189 struct property *chain_property(struct property *first, struct property *list);
195 struct node *chain_node(struct node *first, struct node *list);
233 struct reserve_info *list);
234 struct reserve_info *add_reserve_entry(struct reserve_info *list,
/scripts/coccinelle/iterators/
Duse_after_iter.cocci1 /// If list_for_each_entry, etc complete a traversal of the list, the iterator
2 /// variable ends up pointing to an address at an offset from the list head,
Dlist_entry_update.cocci2 /// the list to the next, so it is usually not a good idea to reassign it.
Ditnull.cocci2 /// to a real list element, never NULL.
/scripts/gcc-plugins/
Dlatent_entropy_plugin.c278 tree list; in latent_entropy_gate() local
288 list = DECL_ATTRIBUTES(current_function_decl); in latent_entropy_gate()
289 return lookup_attribute("latent_entropy", list) != NULL_TREE; in latent_entropy_gate()
/scripts/coccinelle/tests/
Dunsigned_lesser_than_zero.cocci10 /// - hardcoded list of signed functions/macros with always non-negative

12