| /scripts/gdb/linux/ |
| A D | lists.py | 23 def list_for_each(head): argument 25 head = head.dereference() 30 if head['next'] == 0: 35 node = head['next'].dereference() 42 for node in list_for_each(head): 46 def hlist_for_each(head): argument 48 head = head.dereference() 64 def list_check(head): argument 67 head = head.dereference() 70 c = head [all …]
|
| /scripts/include/ |
| A D | list.h | 83 __list_add(new, head, head->next); in list_add() 96 __list_add(new, head->prev, head); in list_add_tail() 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() 190 return list->prev == head; in list_is_first() 200 return list->next == head; in list_is_last() 210 return list == head; in list_is_head() 219 return head->next == head; in list_empty() 276 (&pos->member == (head)) [all …]
|
| /scripts/ |
| A D | head-object-list.txt | 14 arch/alpha/kernel/head.o 15 arch/arc/kernel/head.o 17 arch/arm/kernel/head.o 18 arch/csky/kernel/head.o 19 arch/hexagon/kernel/head.o 21 arch/m68k/68000/head.o 22 arch/m68k/coldfire/head.o 23 arch/m68k/kernel/head.o 26 arch/nios2/kernel/head.o 27 arch/parisc/kernel/head.o [all …]
|
| A D | setlocalversion | 81 if ! head=$(git rev-parse --verify HEAD 2>/dev/null); then 131 printf '%s%.12s' -g "$head"
|
| A D | mkcompile_h | 19 LD_VERSION=$(LC_ALL=C $LD -v | head -n1 |
|
| A D | nsdeps | 15 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
|
| A D | check_extable.sh | 55 …eval $(objdump -rj .altinstructions ${obj} | grep -B1 "${section}+${section_offset}" | head -n1 | …
|
| A D | coccicheck | 18 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
|
| A D | spdxcheck.py | 53 lictree = repo.head.commit.tree['LICENSES'] 392 scan_git_subtree(repo.head.reference.commit.tree, p, 399 scan_git_tree(repo.head.commit.tree, '.', args.depth)
|
| A D | checkkconfigsymbols.py | 138 head = get_head() 175 reset(head)
|
| /scripts/kconfig/ |
| A D | mnconf-common.h | 10 struct list_head *head; member
|
| A D | mnconf-common.c | 30 list_for_each_entry(pos, data->head, entries) { in handle_search_keys()
|
| A 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()
|
| A D | menu.c | 632 struct list_head *head) in get_prompt_str() argument 658 if (head && location) { in get_prompt_str() 661 list_add_tail(&jump->entries, head); in get_prompt_str() 712 struct list_head *head) in get_symbol_str() argument 735 get_prompt_str(r, menu->prompt, head); in get_symbol_str() 763 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) in get_relations_str() argument 770 get_symbol_str(&res, sym, head); in get_relations_str()
|
| A D | lkc.h | 103 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
|
| A 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/ |
| A D | update-dtc-source.sh | 43 git log --oneline scripts/dtc/ | grep 'upstream' | head -1 | sed -e 's/^.* \(.*\)/\1/'
|
| A 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/ |
| A D | use_after_iter.cocci | 3 /// variable ends up pointing to an address at an offset from the list head,
|
| /scripts/mod/ |
| A D | modpost.c | 288 static bool contains_namespace(struct list_head *head, const char *namespace) in contains_namespace() argument 299 list_for_each_entry(list, head, list) { in contains_namespace() 307 static void add_namespace(struct list_head *head, const char *namespace) in add_namespace() argument 311 if (!contains_namespace(head, namespace)) { in add_namespace() 314 list_add_tail(&ns_entry->list, head); in add_namespace()
|