Searched refs:head (Results 1 – 16 of 16) sorted by relevance
/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 if head['next'] == 0: 32 .format(head.address)) 35 node = head['next'].dereference() 36 while node.address != head.address: 41 def list_for_each_entry(head, gdbtype, member): 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 | 356 struct list_head *head; member 367 list_for_each_entry(pos, data->head, entries) { in update_text() 431 LIST_HEAD(head); in search_conf() 435 .head = &head, in search_conf() 441 res = get_relations_str(sym_arr, &head); in search_conf() 454 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf()
|
D | menu.c | 710 struct list_head *head) in get_prompt_str() argument 738 if (head && location) { in get_prompt_str() 752 if (list_empty(head)) in get_prompt_str() 755 jump->index = list_entry(head->prev, struct jump_key, in get_prompt_str() 758 list_add_tail(&jump->entries, head); in get_prompt_str() 801 struct list_head *head) in get_symbol_str() argument 823 get_prompt_str(r, prop->menu->prompt, head); in get_symbol_str() 851 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) in get_relations_str() argument 858 get_symbol_str(&res, sym, head); in get_relations_str()
|
D | lkc.h | 105 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 90 printf '%s%s' -g "$(echo $head | cut -c1-12)"
|
D | nsdeps | 15 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
|
D | mkcompile_h | 63 LD_VERSION=$($LD -v | head -n1 | sed 's/(compatible with [^)]*)//' \
|
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 | 138 head = get_head() 175 reset(head)
|
/scripts/dtc/ |
D | update-dtc-source.sh | 43 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,
|