/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/mod/ |
D | list.h | 84 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 …]
|
D | modpost.c | 305 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/ |
D | head-object-list.txt | 3 # 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 …]
|
D | setlocalversion | 56 if ! head=$(git rev-parse --verify HEAD 2>/dev/null); then 105 printf '%s%s' -g "$(echo $head | cut -c1-12)"
|
D | mkcompile_h | 19 LD_VERSION=$(LC_ALL=C $LD -v | head -n1 |
|
D | nsdeps | 15 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
|
D | check_extable.sh | 55 …eval $(objdump -rj .altinstructions ${obj} | grep -B1 "${section}+${section_offset}" | head -n1 | …
|
D | coccicheck | 18 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
|
D | spdxcheck.py | 53 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)
|
D | checkkconfigsymbols.py | 138 head = get_head() 175 reset(head)
|
/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 | 382 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()
|
D | menu.c | 708 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()
|
D | nconf.c | 695 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()
|
D | lkc.h | 105 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *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,
|