Home
last modified time | relevance | path

Searched refs:head (Results 1 – 16 of 16) sorted by relevance

/scripts/gdb/linux/
Dlists.py23 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/
Dlist.h49 #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()
Dmconf.c359 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()
Dmenu.c731 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()
Dlkc.h122 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
/scripts/
Dsetlocalversion65 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)"
Dmkcompile_h65 LD_VERSION=$($LD -v | head -n1 | sed 's/(compatible with [^)]*)//' \
Dnsdeps16 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
Dcheck_extable.sh55 …eval $(objdump -rj .altinstructions ${obj} | grep -B1 "${section}+${section_offset}" | head -n1 | …
Dspdxcheck.py37 lictree = repo.head.commit.tree['LICENSES']
271 scan_git_subtree(repo.head.reference.commit.tree, p)
277 scan_git_tree(repo.head.commit.tree)
Ddecodecode141 faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
Dcoccicheck18 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
Dcheckkconfigsymbols.py136 head = get_head()
173 reset(head)
/scripts/dtc/
Dupdate-dtc-source.sh42 git log --oneline scripts/dtc/ | grep 'upstream' | head -1 | sed -e 's/^.* \(.*\)/\1/'
Dlivetree.c76 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/
Duse_after_iter.cocci3 /// variable ends up pointing to an address at an offset from the list head,