/scripts/gdb/linux/ |
D | lists.py | 23 def list_for_each(head): argument 24 if head.type == list_head.get_type().pointer(): 25 head = head.dereference() 26 elif head.type != list_head.get_type(): 28 .format(head.type)) 30 node = head['next'].dereference() 31 while node.address != head.address: 36 def list_for_each_entry(head, gdbtype, member): argument 37 for node in list_for_each(head): 41 def hlist_for_each(head): argument [all …]
|
/scripts/kconfig/ |
D | list.h | 49 #define list_for_each_entry(pos, head, member) \ argument 50 for (pos = list_entry((head)->next, typeof(*pos), member); \ 51 &pos->member != (head); \ 61 #define list_for_each_entry_safe(pos, n, head, member) \ argument 62 for (pos = list_entry((head)->next, typeof(*pos), member), \ 64 &pos->member != (head); \ 71 static inline int list_empty(const struct list_head *head) in list_empty() argument 73 return head->next == head; in list_empty() 100 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 102 __list_add(_new, head->prev, head); in list_add_tail()
|
D | mconf.c | 358 struct list_head *head; member 369 list_for_each_entry(pos, data->head, entries) { in update_text() 433 LIST_HEAD(head); in search_conf() 437 .head = &head, in search_conf() 443 res = get_relations_str(sym_arr, &head); in search_conf() 456 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf()
|
D | menu.c | 702 struct list_head *head) in get_prompt_str() argument 717 if (head && location) { in get_prompt_str() 731 if (list_empty(head)) in get_prompt_str() 734 jump->index = list_entry(head->prev, struct jump_key, in get_prompt_str() 737 list_add_tail(&jump->entries, head); in get_prompt_str() 792 struct list_head *head) in get_symbol_str() argument 810 get_prompt_str(r, prop, head); in get_symbol_str() 840 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) in get_relations_str() argument 847 get_symbol_str(&res, sym, head); in get_relations_str()
|
D | qconf.cc | 1074 QString head, debug, help; in menuInfo() local 1079 head += "<big><b>"; in menuInfo() 1080 head += print_filter(_menu->prompt->text); in menuInfo() 1081 head += "</b></big>"; in menuInfo() 1083 head += " ("; in menuInfo() 1085 head += QString().sprintf("<a href=\"s%p\">", sym); in menuInfo() 1086 head += print_filter(sym->name); in menuInfo() 1088 head += "</a>"; in menuInfo() 1089 head += ")"; in menuInfo() 1092 head += "<big><b>"; in menuInfo() [all …]
|
D | lkc_proto.h | 26 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
|
/scripts/ |
D | setlocalversion | 66 head=$(git rev-parse --verify HEAD 2>/dev/null); then 101 head="$(echo $head | cut -c1-12)" 102 printf '%s%s' -g $head 108 printf -- '-svn%s' "`git svn find-rev $head`"
|
D | mkcompile_h | 78 LD_VERSION=$($LD -v | head -n1 | sed 's/(compatible with [^)]*)//' \
|
D | nsdeps | 16 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
|
D | check_extable.sh | 55 …eval $(objdump -rj .altinstructions ${obj} | grep -B1 "${section}+${section_offset}" | head -n1 | …
|
D | spdxcheck.py | 37 lictree = repo.head.commit.tree['LICENSES'] 268 scan_git_subtree(repo.head.reference.commit.tree, p) 274 scan_git_tree(repo.head.commit.tree)
|
D | decode_stacktrace.sh | 56 local base_addr=$(nm "$objfile" | grep -i ' t ' | awk "/ $name\$/ {print \$1}" | head -n1)
|
D | decodecode | 126 faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
|
D | coccicheck | 18 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
|
D | checkkconfigsymbols.py | 136 head = get_head() 173 reset(head)
|
/scripts/dtc/ |
D | update-dtc-source.sh | 42 git log --oneline scripts/dtc/ | grep 'upstream' | head -1 | sed -e 's/^.* \(.*\)/\1/'
|
D | livetree.c | 76 struct property *head = NULL; in reverse_properties() local 81 p->next = head; in reverse_properties() 82 head = p; in reverse_properties() 85 return head; in reverse_properties()
|
/scripts/coccinelle/iterators/ |
D | use_after_iter.cocci | 3 /// variable ends up pointing to an address at an offset from the list head,
|