Home
last modified time | relevance | path

Searched refs:list (Results 1 – 25 of 26) 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/kconfig/
Dqconf.cc116 ConfigList* list; in updateMenu() local
123 list = listView(); in updateMenu()
125 setPixmap(promptColIdx, list->menuBackPix); in updateMenu()
136 if (list->mode == singleMode || list->mode == symbolMode) { in updateMenu()
140 if (sym && list->rootEntry == menu) in updateMenu()
142 setPixmap(promptColIdx, list->menuPix); in updateMenu()
166 if (!sym_is_changable(sym) && list->optMode == normalOpt) { in updateMenu()
177 setPixmap(promptColIdx, list->choiceYesPix); in updateMenu()
179 setPixmap(promptColIdx, list->symbolYesPix); in updateMenu()
184 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()
270 if (parent->list) { in menu_finalize()
275 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
283 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
294 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
319 for (menu = parent->list; menu; menu = menu->next) in menu_finalize()
348 parent->list = parent->next; in menu_finalize()
355 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
395 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in menu_finalize()
[all …]
Dqconf.h227 bool showName(void) const { return list->showName; } in showName()
228 bool showRange(void) const { return list->showRange; } in showRange()
229 bool showData(void) const { return list->showData; } in showData()
240 ConfigList* list;
295 ConfigView* list; variable
Dconf.c269 for (child = menu->list; child; child = child->next) { in conf_choice()
328 for (child = menu->list; child; child = child->next) { in conf_choice()
341 for (child = child->list; child; child = child->next) { in conf_choice()
410 for (child = menu->list; child; child = child->next) in conf()
441 for (child = menu->list; child; child = child->next) in check_conf()
Dmconf.c407 for (child = menu->list; child; child = child->next) { in build_conf()
440 if (def_menu->list) { in build_conf()
512 for (child = menu->list; child; child = child->next) in build_conf()
657 for (child = menu->list; child; child = child->next) { in conf_choice()
Dconfdata.c613 menu = rootmenu.list; in conf_write_defconfig()
655 if (menu->list != NULL) { in conf_write_defconfig()
656 menu = menu->list; in conf_write_defconfig()
722 menu = rootmenu.list; in conf_write()
743 if (menu->list) { in conf_write()
744 menu = menu->list; in conf_write()
Dzconf.y694 menu = rootmenu.list; in zconfdump()
720 if (menu->list) in zconfdump()
721 menu = menu->list; in zconfdump()
Dnconf.c797 for (child = menu->list; child; child = child->next) { in build_conf()
835 if (def_menu->list) { in build_conf()
913 for (child = menu->list; child; child = child->next) in build_conf()
1250 for (i = 0, child = menu->list; child; child = child->next) { in conf_choice()
Dkxgettext.c184 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list()
Dexpr.h161 struct menu *list; member
Dgconf.c1121 for (child = menu->list; child; child = child->next) { in fill_row()
1286 for (child1 = src->list; child1; child1 = child1->next) { in update_tree()
1370 for (child = menu->list; child; child = child->next) { in display_tree()
1456 for (child = menu->list; child; child = child->next) { in fixup_rootmenu()
Dzconf.tab.c_shipped489 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
2457 menu = rootmenu.list;
2483 if (menu->list)
2484 menu = menu->list;
/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}) {
Dget_maintainer.pl1414 my @list = @$list_ref;
1423 foreach my $entry (@list) {
1446 foreach my $entry (@list) {
1549 if ($list[$i]->[1] =~ /^(maintainer|supporter)/i);
1554 if ($list[$i]->[1] =~ /^(author|commit|signer)/i);
1559 if ($list[$i]->[1] =~ /^(open list)/i);
1564 if ($list[$i]->[1] =~ /^(subscriber list)/i);
1683 foreach my $entry (@list) {
1685 push(@new_emailto, $list[$count]);
Dgen_initramfs_list.sh27 <cpio_source> File list or directory for cpio archive.
30 -d Output the default cpio list.
/scripts/genksyms/
Dgenksyms.c70 static void print_list(FILE * f, struct string_list *list);
503 static void print_node(FILE * f, struct string_list *list) in print_node() argument
505 if (symbol_types[list->tag].n) { in print_node()
506 putc(symbol_types[list->tag].n, f); in print_node()
509 fputs(list->string, f); in print_node()
512 static void print_list(FILE * f, struct string_list *list) in print_list() argument
518 if (list == NULL) { in print_list()
523 tmp = list; in print_list()
531 (*tmp2--) = list; in print_list()
532 while ((list = list->next) != NULL) in print_list()
[all …]
Dgenksyms.h69 void free_node(struct string_list *list);
Dparse.tab.c_shipped494 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
1279 - Of course, the expected token list depends on states to have
1284 token list. However, the list is correct for canonical LR with
/scripts/dtc/
Dlivetree.c54 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument
58 first->next = list; in chain_property()
170 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
174 first->next_sibling = list; in chain_node()
218 struct reserve_info *list) in chain_reserve_entry() argument
222 first->next = list; in chain_reserve_entry()
226 struct reserve_info *add_reserve_entry(struct reserve_info *list, in add_reserve_entry() argument
233 if (! list) in add_reserve_entry()
236 for (last = list; last->next; last = last->next) in add_reserve_entry()
241 return list; in add_reserve_entry()
Ddtc.h171 struct property *chain_property(struct property *first, struct property *list);
176 struct node *chain_node(struct node *first, struct node *list);
210 struct reserve_info *list);
211 struct reserve_info *add_reserve_entry(struct reserve_info *list,
Ddtc-parser.tab.c_shipped435 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
/scripts/coccinelle/iterators/
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/mod/
Dmodpost.c1277 static void print_section_list(const char * const list[20]) in print_section_list()
1279 const char *const *s = list; in print_section_list()

12