Home
last modified time | relevance | path

Searched refs:head (Results 1 – 18 of 18) 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.c358 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()
Dmenu.c702 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()
Dqconf.cc1074 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 …]
Dlkc_proto.h26 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
/scripts/
Dsetlocalversion66 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`"
Dmkcompile_h78 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']
268 scan_git_subtree(repo.head.reference.commit.tree, p)
274 scan_git_tree(repo.head.commit.tree)
Ddecode_stacktrace.sh56 local base_addr=$(nm "$objfile" | grep -i ' t ' | awk "/ $name\$/ {print \$1}" | head -n1)
Ddecodecode126 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,