/scripts/kconfig/lxdialog/ |
D | checklist.c | 109 WINDOW *dialog, *list; in dialog_checklist() local 157 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist() 160 keypad(list, TRUE); in dialog_checklist() 183 print_item(list, i, i == choice); in dialog_checklist() 192 wnoutrefresh(list); in dialog_checklist() 214 print_item(list, 0, FALSE); in dialog_checklist() 215 scrollok(list, TRUE); in dialog_checklist() 216 wscrl(list, -1); in dialog_checklist() 217 scrollok(list, FALSE); in dialog_checklist() 221 print_item(list, 0, TRUE); in dialog_checklist() [all …]
|
/scripts/dtc/libfdt/ |
D | fdt_ro.c | 725 const char *list, *end; in fdt_stringlist_count() local 728 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_count() 729 if (!list) in fdt_stringlist_count() 732 end = list + length; in fdt_stringlist_count() 734 while (list < end) { in fdt_stringlist_count() 735 length = strnlen(list, end - list) + 1; in fdt_stringlist_count() 738 if (list + length > end) in fdt_stringlist_count() 741 list += length; in fdt_stringlist_count() 752 const char *list, *end; in fdt_stringlist_search() local 754 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_search() [all …]
|
/scripts/ |
D | export_report.pl | 30 my $list = $href->{$mod}; 32 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}) {
|
D | dev-needs.sh | 8 Usage: $(basename $0) [-c|-d|-m|-f] [filter options] <list of devices> 13 The script takes as input a list of one or more device directories under 28 -f list the firmware node path of the dependencies 29 -g list the dependencies as edges and nodes for graphviz 30 -t list the dependencies as edges for tsort
|
D | get_maintainer.pl | 1769 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/mod/ |
D | list.h | 54 static inline void INIT_LIST_HEAD(struct list_head *list) in INIT_LIST_HEAD() argument 56 list->next = list; in INIT_LIST_HEAD() 57 list->prev = list; in INIT_LIST_HEAD() 138 static inline int list_is_head(const struct list_head *list, const struct list_head *head) in list_is_head() argument 140 return list == head; in list_is_head()
|
D | modpost.c | 173 list_for_each_entry(mod, &modules, list) { in find_module() 203 list_add_tail(&mod->list, &modules); in new_module() 215 struct list_head list; /* link to module::exported_symbols or module::unresolved_symbols */ member 271 list_add_tail(&sym->list, &mod->unresolved_symbols); in sym_add_unresolved() 295 struct list_head list; member 301 struct namespace_list *list; in contains_namespace() local 303 list_for_each_entry(list, head, list) { in contains_namespace() 304 if (!strcmp(list->namespace, namespace)) in contains_namespace() 319 list_add_tail(&ns_entry->list, head); in add_namespace() 390 list_add_tail(&s->list, &mod->exported_symbols); in sym_add_exported() [all …]
|
/scripts/genksyms/ |
D | genksyms.c | 57 static void print_list(FILE * f, struct string_list *list); 492 static void print_node(FILE * f, struct string_list *list) in print_node() argument 494 if (symbol_types[list->tag].n) { in print_node() 495 putc(symbol_types[list->tag].n, f); in print_node() 498 fputs(list->string, f); in print_node() 501 static void print_list(FILE * f, struct string_list *list) in print_list() argument 507 if (list == NULL) { in print_list() 512 tmp = list; in print_list() 520 (*tmp2--) = list; in print_list() 521 while ((list = list->next) != NULL) in print_list() [all …]
|
D | genksyms.h | 58 void free_node(struct string_list *list);
|
/scripts/kconfig/ |
D | qconf.cc | 90 ConfigList* list; in updateMenu() local 97 list = listView(); in updateMenu() 110 if (list->mode == singleMode || list->mode == symbolMode) { in updateMenu() 114 if (sym && list->rootEntry == menu) in updateMenu() 141 if (!sym_is_changeable(sym) && list->optMode == normalOpt) { in updateMenu() 206 ConfigList* list = listView(); in init() local 210 if (list->mode != fullMode) in init() 468 ConfigList *list = it.next(); in updateListForAll() local 470 list->updateList(); in updateListForAll() 479 ConfigList *list = it.next(); in updateListAllForAll() local [all …]
|
D | menu.c | 45 last_entry_ptr = &rootmenu.list; in _menu_init() 68 last_entry_ptr = ¤t_entry->list; in menu_add_menu() 293 if (parent->list) { in menu_finalize() 303 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize() 311 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize() 330 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize() 410 for (menu = parent->list; menu; menu = menu->next) in menu_finalize() 478 parent->list = parent->next; in menu_finalize() 485 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize() 554 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in menu_finalize() [all …]
|
D | conf.c | 487 for (child = menu->list; child; child = child->next) { in conf_choice() 542 for (child = menu->list; child; child = child->next) { in conf_choice() 555 for (child = child->list; child; child = child->next) { in conf_choice() 625 for (child = menu->list; child; child = child->next) in conf() 663 for (child = menu->list; child; child = child->next) in check_conf()
|
D | confdata.c | 834 menu = rootmenu.list; in conf_write_defconfig() 876 if (menu->list != NULL) { in conf_write_defconfig() 877 menu = menu->list; in conf_write_defconfig() 938 menu = rootmenu.list; in conf_write() 964 if (menu->list) { in conf_write() 965 menu = menu->list; in conf_write()
|
D | mconf.c | 531 for (child = menu->list; child; child = child->next) { in build_conf() 564 if (def_menu->list) { in build_conf() 636 for (child = menu->list; child; child = child->next) in build_conf() 806 for (child = menu->list; child; child = child->next) { in conf_choice()
|
/scripts/coccinelle/api/ |
D | check_bq27xxx_data.cocci | 60 initializer list i1regs_vals; 68 initializer list i2regs_vals; 96 initializer list i1dmregs_vals; 104 initializer list i2dmregs_vals; 132 initializer list[n1] i1props_vals; 140 initializer list[n2] i2props_vals;
|
/scripts/coccinelle/misc/ |
D | warn.cocci | 45 expression list es; 55 expression list ok1.es; 94 expression list es; 104 expression list ok2.es;
|
/scripts/coccinelle/iterators/ |
D | for_each_child.cocci | 25 expression list [n1] es; 55 expression list [r.n1] es; 84 expression list [r.n1] es; 117 expression list [r.n1] es; 150 expression list[r.n1] es; 173 expression list[r.n1] es; 188 expression list[r.n1] es; 219 expression list[r.n1] es; 243 expression list[r.n1] es; 277 expression list[r.n1] es;
|
D | use_after_iter.cocci | 2 /// If list_for_each_entry, etc complete a traversal of the list, the iterator 3 /// variable ends up pointing to an address at an offset from the list head,
|
D | list_entry_update.cocci | 3 /// the list to the next, so it is usually not a good idea to reassign it.
|
/scripts/gdb/linux/ |
D | cpus.py | 136 gdb.write("Possible CPUs : {}\n".format(list(each_possible_cpu()))) 137 gdb.write("Present CPUs : {}\n".format(list(each_present_cpu()))) 138 gdb.write("Online CPUs : {}\n".format(list(each_online_cpu()))) 139 gdb.write("Active CPUs : {}\n".format(list(each_active_cpu())))
|
/scripts/gcc-plugins/ |
D | randomize_layout_plugin.c | 314 tree list; in relayout_struct() local 366 list = make_node(FIELD_DECL); in relayout_struct() 367 TREE_CHAIN(list) = newtree[0]; in relayout_struct() 368 TREE_TYPE(list) = void_type_node; in relayout_struct() 369 DECL_SIZE(list) = bitsize_zero_node; in relayout_struct() 370 DECL_NONADDRESSABLE_P(list) = 1; in relayout_struct() 371 DECL_FIELD_BIT_OFFSET(list) = bitsize_zero_node; in relayout_struct() 372 DECL_SIZE_UNIT(list) = size_zero_node; in relayout_struct() 373 DECL_FIELD_OFFSET(list) = size_zero_node; in relayout_struct() 374 DECL_CONTEXT(list) = type; in relayout_struct() [all …]
|
D | latent_entropy_plugin.c | 265 tree list; in latent_entropy_gate() local 275 list = DECL_ATTRIBUTES(current_function_decl); in latent_entropy_gate() 276 return lookup_attribute("latent_entropy", list) != NULL_TREE; in latent_entropy_gate()
|
/scripts/dtc/ |
D | livetree.c | 65 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument 69 first->next = list; in chain_property() 258 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument 262 first->next_sibling = list; in chain_node() 371 struct reserve_info *list) in chain_reserve_entry() argument 375 first->next = list; in chain_reserve_entry() 379 struct reserve_info *add_reserve_entry(struct reserve_info *list, in add_reserve_entry() argument 386 if (! list) in add_reserve_entry() 389 for (last = list; last->next; last = last->next) in add_reserve_entry() 394 return list; in add_reserve_entry()
|
D | dtc.h | 266 struct property *chain_property(struct property *first, struct property *list); 275 struct node *chain_node(struct node *first, struct node *list); 318 struct reserve_info *list); 319 struct reserve_info *add_reserve_entry(struct reserve_info *list,
|
/scripts/atomic/ |
D | atomics.tbl | 14 # Where args contains list of type[:name], where type is:
|