Home
last modified time | relevance | path

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

/scripts/kconfig/lxdialog/
A Dchecklist.c109 WINDOW *dialog, *list; in dialog_checklist() local
160 keypad(list, TRUE); in dialog_checklist()
192 wnoutrefresh(list); in dialog_checklist()
216 wscrl(list, -1); in dialog_checklist()
226 wrefresh(list); in dialog_checklist()
243 wscrl(list, 1); in dialog_checklist()
254 wrefresh(list); in dialog_checklist()
269 wrefresh(list); in dialog_checklist()
287 delwin(list); in dialog_checklist()
307 delwin(list); in dialog_checklist()
[all …]
/scripts/dtc/libfdt/
A Dfdt_ro.c726 if (!list) in fdt_stringlist_count()
729 end = list + length; in fdt_stringlist_count()
732 length = strnlen(list, end - list) + 1; in fdt_stringlist_count()
738 list += length; in fdt_stringlist_count()
752 if (!list) in fdt_stringlist_search()
759 length = strnlen(list, end - list) + 1; in fdt_stringlist_search()
768 list += length; in fdt_stringlist_search()
783 if (!list) { in fdt_stringlist_get()
793 length = strnlen(list, end - list) + 1; in fdt_stringlist_get()
807 return list; in fdt_stringlist_get()
[all …]
/scripts/kconfig/
A Dqconf.cc105 ConfigList* list; in updateMenu() local
112 list = listView(); in updateMenu()
125 if (list->mode == singleMode || list->mode == symbolMode) { in updateMenu()
958 list->reinit(); in setShowName()
967 list->reinit(); in setShowRange()
1267 list->list->mode = listMode; in ConfigSearchWindow()
1269 connect(list->list, SIGNAL(menuChanged(struct menu *)), in ConfigSearchWindow()
1271 connect(list->list, SIGNAL(menuChanged(struct menu *)), in ConfigSearchWindow()
1317 list->list->clear(); in search()
1325 lastItem = new ConfigItem(list->list, lastItem, prop->menu, in search()
[all …]
A Dmenu.c44 last_entry_ptr = &rootmenu.list; in _menu_init()
67 last_entry_ptr = &current_entry->list; in menu_add_menu()
301 if (parent->list) { in menu_finalize()
311 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
319 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
340 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
420 for (menu = parent->list; menu; menu = menu->next) in menu_finalize()
488 parent->list = parent->next; in menu_finalize()
495 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
571 menu->next = menu->list; in menu_finalize()
[all …]
A 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
A Dconf.c267 for (child = menu->list; child; child = child->next) { in conf_choice()
322 for (child = menu->list; child; child = child->next) { in conf_choice()
335 for (child = child->list; child; child = child->next) { in conf_choice()
405 for (child = menu->list; child; child = child->next) in conf()
446 for (child = menu->list; child; child = child->next) in check_conf()
A Dmconf.c533 for (child = menu->list; child; child = child->next) { in build_conf()
566 if (def_menu->list) { in build_conf()
638 for (child = menu->list; child; child = child->next) in build_conf()
808 for (child = menu->list; child; child = child->next) { in conf_choice()
A Dconfdata.c716 menu = rootmenu.list; in conf_write_defconfig()
758 if (menu->list != NULL) { in conf_write_defconfig()
759 menu = menu->list; in conf_write_defconfig()
824 menu = rootmenu.list; in conf_write()
845 if (menu->list) { in conf_write()
846 menu = menu->list; in conf_write()
A Dzconf.y743 menu = rootmenu.list; in zconfdump()
769 if (menu->list) in zconfdump()
770 menu = menu->list; in zconfdump()
A Dnconf.c798 for (child = menu->list; child; child = child->next) { in build_conf()
836 if (def_menu->list) { in build_conf()
914 for (child = menu->list; child; child = child->next) in build_conf()
1248 for (i = 0, child = menu->list; child; child = child->next) { in conf_choice()
A Dexpr.h228 struct menu *list; member
A Dgconf.c1065 for (child = menu->list; child; child = child->next) { in fill_row()
1226 for (child1 = src->list; child1; child1 = child1->next) { in update_tree()
1309 for (child = menu->list; child; child = child->next) { in display_tree()
1395 for (child = menu->list; child; child = child->next) { in fixup_rootmenu()
/scripts/dtc/
A DREADME83 The shared library uses libfdt/version.lds to list the exported functions, so
100 Mailing list
102 The following list is for discussion about dtc and libfdt implementation
105 Core device tree bindings are discussed on the devicetree-spec list:
A Ddtc.h199 struct property *chain_property(struct property *first, struct property *list);
207 struct node *chain_node(struct node *first, struct node *list);
249 struct reserve_info *list);
250 struct reserve_info *add_reserve_entry(struct reserve_info *list,
A Dlivetree.c77 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument
81 first->next = list; in chain_property()
262 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
266 first->next_sibling = list; in chain_node()
372 struct reserve_info *list) in chain_reserve_entry() argument
376 first->next = list; in chain_reserve_entry()
380 struct reserve_info *add_reserve_entry(struct reserve_info *list, in add_reserve_entry() argument
387 if (! list) in add_reserve_entry()
390 for (last = list; last->next; last = last->next) in add_reserve_entry()
395 return list; in add_reserve_entry()
/scripts/coccinelle/iterators/
A 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,
A Dlist_entry_update.cocci2 /// the list to the next, so it is usually not a good idea to reassign it.
A Ditnull.cocci2 /// to a real list element, never NULL.
/scripts/
A Dsetlocalversion45 set -- $(git rev-list --count --left-right "$tag"...HEAD 2> /dev/null)
A Dget_maintainer.pl1769 my @list = @$list_ref;
1778 foreach my $entry (@list) {
1801 foreach my $entry (@list) {
1904 if ($list[$i]->[1] =~ /^(maintainer|supporter)/i);
1909 if ($list[$i]->[1] =~ /^(author|commit|signer)/i);
1914 if ($list[$i]->[1] =~ /^(open list)/i);
1919 if ($list[$i]->[1] =~ /^(subscriber list)/i);
2038 foreach my $entry (@list) {
2040 push(@new_emailto, $list[$count]);
/scripts/dtc/pylibfdt/
A Dlibfdt.i_shipped115 val if val is a list, None if not
121 # Normally a list is returned which contains the data and its length.
123 if not isinstance(val, list):
494 defaults to empty, but you can pass a list of errors that you expect.

Completed in 36 milliseconds