/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 | 359 struct list_head *head; member 370 list_for_each_entry(pos, data->head, entries) { in update_text() 434 LIST_HEAD(head); in search_conf() 438 .head = &head, in search_conf() 444 res = get_relations_str(sym_arr, &head); in search_conf() 457 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf()
|
D | menu.c | 731 struct list_head *head) in get_prompt_str() argument 759 if (head && location) { in get_prompt_str() 773 if (list_empty(head)) in get_prompt_str() 776 jump->index = list_entry(head->prev, struct jump_key, in get_prompt_str() 779 list_add_tail(&jump->entries, head); in get_prompt_str() 822 struct list_head *head) in get_symbol_str() argument 844 get_prompt_str(r, prop->menu->prompt, head); in get_symbol_str() 872 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) in get_relations_str() argument 879 get_symbol_str(&res, sym, head); in get_relations_str()
|
D | lkc.h | 122 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
|
/scripts/ |
D | setlocalversion | 65 if head=$(git rev-parse --verify HEAD 2>/dev/null); then 100 head="$(echo $head | cut -c1-12)" 101 printf '%s%s' -g $head 107 printf -- '-svn%s' "$(git svn find-rev $head)"
|
D | mkcompile_h | 65 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'] 271 scan_git_subtree(repo.head.reference.commit.tree, p) 277 scan_git_tree(repo.head.commit.tree)
|
D | decodecode | 141 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,
|