Searched refs:list (Results 1 - 21 of 21) sorted by relevance

/scripts/kconfig/lxdialog/
H A Dchecklist.c29 * Print list item
114 * Display a dialog box with a list of options that can be turned on or off
122 WINDOW *dialog, *list; local
169 /* create new window for the list */
170 list = subwin(dialog, list_height, list_width, y + box_y + 1,
173 keypad(list, TRUE);
175 /* draw a box around the list items */
193 /* Print the list */
196 print_item(list, i, i == choice);
205 wnoutrefresh(list);
[all...]
/scripts/
H A Dexport_report.pl29 my $list = $href->{$mod};
31 foreach my $sym (sort numerically @{$list}) {
155 # print the list of unused exported symbols
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}) {
H A Dget_maintainer.pl744 --l => include list(s) if any
745 --s => include subscriber only list(s) if any
747 --roles => show roles (status:subsystem, git-signer, list, etc...)
1023 "subscriber list${list_role}"]);
1032 "moderated list${list_role}"]);
1035 "open list${list_role}"]);
1414 my @list = @$list_ref;
1423 foreach my $entry (@list) {
1439 "*", "#", "email/list and role:stats";
1446 foreach my $entry (@list) {
[all...]
H A Dgen_initramfs_list.sh27 <cpio_source> File list or directory for cpio archive.
30 -d Output the default cpio list.
265 "-d") # display default initramfs list
/scripts/kconfig/
H A Dqconf.cc72 * Reads a list of integer values from the application settings.
87 * Writes a list of integer values to the application settings.
116 ConfigList* list; local
123 list = listView();
125 setPixmap(promptColIdx, list->menuBackPix);
136 if (list->mode == singleMode || list->mode == symbolMode) {
140 if (sym && list->rootEntry == menu)
142 setPixmap(promptColIdx, list->menuPix);
166 if (!sym_is_changable(sym) && list
249 ConfigList* list = listView(); local
266 ConfigList* list = listView(); local
1517 ConfigList* list = NULL; local
[all...]
H A Dmenu.c44 last_entry_ptr = &rootmenu.list;
72 last_entry_ptr = &current_entry->list;
270 if (parent->list) {
275 for (menu = parent->list; menu; menu = menu->next) {
283 for (menu = parent->list; menu; menu = menu->next) {
294 for (menu = parent->list; menu; menu = menu->next) {
319 for (menu = parent->list; menu; menu = menu->next)
348 parent->list = parent->next;
355 for (menu = parent->list; menu; menu = menu->next) {
395 if (menu->list
[all...]
H A Dqconf.h227 bool showName(void) const { return list->showName; }
228 bool showRange(void) const { return list->showRange; }
229 bool showData(void) const { return list->showData; }
240 ConfigList* list; member in class:ConfigView
295 ConfigView* list; member in class:ConfigSearchWindow
H A Dconf.c269 for (child = menu->list; child; child = child->next) {
328 for (child = menu->list; child; child = child->next) {
341 for (child = child->list; child; child = child->next) {
410 for (child = menu->list; child; child = child->next)
441 for (child = menu->list; child; child = child->next)
H A Dmconf.c407 for (child = menu->list; child; child = child->next) {
440 if (def_menu->list) {
512 for (child = menu->list; child; child = child->next)
657 for (child = menu->list; child; child = child->next) {
H A Dconfdata.c613 menu = rootmenu.list;
655 if (menu->list != NULL) {
656 menu = menu->list;
722 menu = rootmenu.list;
743 if (menu->list) {
744 menu = menu->list;
H A Dzconf.y694 menu = rootmenu.list;
720 if (menu->list)
721 menu = menu->list;
H A Dexpr.h161 struct menu *list; member in struct:menu
H A Dkxgettext.c184 for (child = menu->list; child != NULL; child = child->next)
H A Dnconf.c797 for (child = menu->list; child; child = child->next) {
835 if (def_menu->list) {
913 for (child = menu->list; child; child = child->next)
1250 for (i = 0, child = menu->list; child; child = child->next) {
H A Dgconf.c1121 for (child = menu->list; child; child = child->next) {
1286 for (child1 = src->list; child1; child1 = child1->next) {
1370 for (child = menu->list; child; child = child->next) {
1438 /* Display the list in the left frame (split view) */
1456 for (child = menu->list; child; child = child->next) {
H A Dzconf.tab.c_shipped489 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
2459 menu = rootmenu.list;
2485 if (menu->list)
2486 menu = menu->list;
/scripts/genksyms/
H A Dgenksyms.c70 static void print_list(FILE * f, struct string_list *list);
503 static void print_node(FILE * f, struct string_list *list) argument
505 if (symbol_types[list->tag].n) {
506 putc(symbol_types[list->tag].n, f);
509 fputs(list->string, f);
512 static void print_list(FILE * f, struct string_list *list) argument
518 if (list == NULL) {
523 tmp = list;
531 (*tmp2--) = list;
532 while ((list
543 struct string_list *list = sym->defn; local
[all...]
H A Dgenksyms.h69 void free_node(struct string_list *list);
/scripts/dtc/
H A 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,
H A Dlivetree.c54 struct property *chain_property(struct property *first, struct property *list) argument
58 first->next = list;
116 /* Pop the property off the list */
143 /* Pop the child node off the list */
170 struct node *chain_node(struct node *first, struct node *list) argument
174 first->next_sibling = list;
218 struct reserve_info *list)
222 first->next = list;
226 struct reserve_info *add_reserve_entry(struct reserve_info *list, argument
233 if (! list)
217 chain_reserve_entry(struct reserve_info *first, struct reserve_info *list) argument
[all...]
/scripts/mod/
H A Dmodpost.c110 /* A list of all modules we processed */
140 /* add to list */
185 * the list of unresolved symbols per module
1277 static void print_section_list(const char * const list[20]) argument
1279 const char *const *s = list;

Completed in 125 milliseconds