Home
last modified time | relevance | path

Searched refs:head (Results 1 – 19 of 19) 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 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/mod/
Dlist.h84 static inline void list_add(struct list_head *new, struct list_head *head) in list_add() argument
86 __list_add(new, head, head->next); in list_add()
97 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail() argument
99 __list_add(new, head->prev, head); in list_add_tail()
138 static inline int list_is_head(const struct list_head *list, const struct list_head *head) in list_is_head() argument
140 return list == head; in list_is_head()
147 static inline int list_empty(const struct list_head *head) in list_empty() argument
149 return head->next == head; in list_empty()
186 #define list_entry_is_head(pos, head, member) \ argument
187 (&pos->member == (head))
[all …]
Dmodpost.c305 static bool contains_namespace(struct list_head *head, const char *namespace) in contains_namespace() argument
316 list_for_each_entry(list, head, list) { in contains_namespace()
324 static void add_namespace(struct list_head *head, const char *namespace) in add_namespace() argument
328 if (!contains_namespace(head, namespace)) { in add_namespace()
332 list_add_tail(&ns_entry->list, head); in add_namespace()
/scripts/
Dhead-object-list.txt3 # The objects listed here are placed at the head of vmlinux. A typical use-case
5 # with head-y, which Kbuild used to support.
8 # The code marked as __HEAD goes into the ".head.text" section, which is placed
14 arch/alpha/kernel/head.o
15 arch/arc/kernel/head.o
16 arch/arm/kernel/head-nommu.o
17 arch/arm/kernel/head.o
18 arch/csky/kernel/head.o
19 arch/hexagon/kernel/head.o
20 arch/ia64/kernel/head.o
[all …]
Dsetlocalversion56 if ! head=$(git rev-parse --verify HEAD 2>/dev/null); then
105 printf '%s%s' -g "$(echo $head | cut -c1-12)"
Dmkcompile_h19 LD_VERSION=$(LC_ALL=C $LD -v | head -n1 |
Dnsdeps15 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
Dcheck_extable.sh55 …eval $(objdump -rj .altinstructions ${obj} | grep -B1 "${section}+${section_offset}" | head -n1 | …
Dcoccicheck18 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
Dspdxcheck.py53 lictree = repo.head.commit.tree['LICENSES']
386 scan_git_subtree(repo.head.reference.commit.tree, p,
393 scan_git_tree(repo.head.commit.tree, '.', args.depth)
Dcheckkconfigsymbols.py138 head = get_head()
175 reset(head)
/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.c382 struct list_head *head; member
408 list_for_each_entry(pos, data->head, entries) { in handle_search_keys()
476 LIST_HEAD(head); in search_conf()
478 .head = &head, in search_conf()
483 res = get_relations_str(sym_arr, &head); in search_conf()
495 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf()
Dmenu.c708 struct list_head *head) in get_prompt_str() argument
734 if (head && location) { in get_prompt_str()
737 list_add_tail(&jump->entries, head); in get_prompt_str()
788 struct list_head *head) in get_symbol_str() argument
810 get_prompt_str(r, prop->menu->prompt, head); in get_symbol_str()
838 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) in get_relations_str() argument
845 get_symbol_str(&res, sym, head); in get_relations_str()
Dnconf.c695 struct list_head *head; member
721 list_for_each_entry(pos, data->head, entries) { in handle_search_keys()
784 LIST_HEAD(head); in search_conf()
786 .head = &head, in search_conf()
790 res = get_relations_str(sym_arr, &head); in search_conf()
Dlkc.h105 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
/scripts/dtc/
Dupdate-dtc-source.sh43 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,