| /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/include/ |
| D | list.h | 81 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/ |
| 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/loongarch/kernel/head.o [all …]
|
| D | setlocalversion | 77 if ! head=$(git rev-parse --verify HEAD 2>/dev/null); then 127 printf '%s%.12s' -g "$head"
|
| 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 | mnconf-common.h | 10 struct list_head *head; member
|
| D | mnconf-common.c | 30 list_for_each_entry(pos, data->head, entries) { in handle_search_keys()
|
| D | menu.c | 611 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()
|
| D | mconf.c | 426 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()
|
| D | lkc.h | 102 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
|
| D | nconf.c | 737 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/ |
| 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,
|
| /scripts/mod/ |
| D | modpost.c | 295 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()
|