Home
last modified time | relevance | path

Searched refs:head (Results 1 – 20 of 20) 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/include/
Dlist.h81 static inline void list_add(struct list_head *new, struct list_head *head) in list_add() argument
83 __list_add(new, head, head->next); in list_add()
94 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail() argument
96 __list_add(new, head->prev, head); in list_add_tail()
165 static inline void list_move(struct list_head *list, struct list_head *head) in list_move() argument
168 list_add(list, head); in list_move()
177 struct list_head *head) in list_move_tail() argument
180 list_add_tail(list, head); in list_move_tail()
188 static inline int list_is_first(const struct list_head *list, const struct list_head *head) in list_is_first() argument
190 return list->prev == head; in list_is_first()
[all …]
/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/loongarch/kernel/head.o
[all …]
Dsetlocalversion77 if ! head=$(git rev-parse --verify HEAD 2>/dev/null); then
127 printf '%s%.12s' -g "$head"
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/
Dmnconf-common.h10 struct list_head *head; member
Dmnconf-common.c30 list_for_each_entry(pos, data->head, entries) { in handle_search_keys()
Dmenu.c611 struct list_head *head) in get_prompt_str() argument
637 if (head && location) { in get_prompt_str()
640 list_add_tail(&jump->entries, head); in get_prompt_str()
691 struct list_head *head) in get_symbol_str() argument
714 get_prompt_str(r, menu->prompt, head); in get_symbol_str()
742 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) in get_relations_str() argument
749 get_symbol_str(&res, sym, head); in get_relations_str()
Dmconf.c426 LIST_HEAD(head); in search_conf()
428 .head = &head, in search_conf()
433 res = get_relations_str(sym_arr, &head); in search_conf()
445 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf()
Dlkc.h102 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
Dnconf.c737 LIST_HEAD(head); in search_conf()
739 .head = &head, in search_conf()
743 res = get_relations_str(sym_arr, &head); in search_conf()
/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,
/scripts/mod/
Dmodpost.c295 static bool contains_namespace(struct list_head *head, const char *namespace) in contains_namespace() argument
306 list_for_each_entry(list, head, list) { in contains_namespace()
314 static void add_namespace(struct list_head *head, const char *namespace) in add_namespace() argument
318 if (!contains_namespace(head, namespace)) { in add_namespace()
321 list_add_tail(&ns_entry->list, head); in add_namespace()