Searched refs:head (Results 1 – 11 of 11) sorted by relevance
/scripts/kconfig/ |
D | list.h | 48 #define list_for_each_entry(pos, head, member) \ argument 49 for (pos = list_entry((head)->next, typeof(*pos), member); \ 50 &pos->member != (head); \ 60 #define list_for_each_entry_safe(pos, n, head, member) \ argument 61 for (pos = list_entry((head)->next, typeof(*pos), member), \ 63 &pos->member != (head); \ 70 static inline int list_empty(const struct list_head *head) in list_empty() argument 72 return head->next == head; in list_empty() 99 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 101 __list_add(_new, head->prev, head); in list_add_tail()
|
D | menu.c | 524 struct list_head *head) in get_prompt_str() argument 539 if (head && location) { in get_prompt_str() 553 if (list_empty(head)) in get_prompt_str() 556 jump->index = list_entry(head->prev, struct jump_key, in get_prompt_str() 559 list_add_tail(&jump->entries, head); in get_prompt_str() 566 if (head && location && menu == location) in get_prompt_str() 596 struct list_head *head) in get_symbol_str() argument 615 get_prompt_str(r, prop, head); in get_symbol_str() 647 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) in get_relations_str() argument 654 get_symbol_str(&res, sym, head); in get_relations_str()
|
D | qconf.cc | 1014 QString head, debug, help; in menuInfo() local 1019 head += "<big><b>"; in menuInfo() 1020 head += print_filter(_(_menu->prompt->text)); in menuInfo() 1021 head += "</b></big>"; in menuInfo() 1023 head += " ("; in menuInfo() 1025 head += QString().sprintf("<a href=\"s%p\">", sym); in menuInfo() 1026 head += print_filter(sym->name); in menuInfo() 1028 head += "</a>"; in menuInfo() 1029 head += ")"; in menuInfo() 1032 head += "<big><b>"; in menuInfo() [all …]
|
D | mconf.c | 360 struct list_head *head; member 371 list_for_each_entry(pos, data->head, entries) { in update_text() 435 LIST_HEAD(head); in search_conf() 439 .head = &head, in search_conf() 445 res = get_relations_str(sym_arr, &head); in search_conf() 458 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf()
|
D | lkc_proto.h | 25 *head)); 27 *head));
|
/scripts/ |
D | setlocalversion | 46 if test -d .git && head=`git rev-parse --verify --short HEAD 2>/dev/null`; then 65 printf '%s%s' -g $head 71 printf -- '-svn%s' "`git svn find-rev $head`"
|
D | ver_linux | 65 ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
|
D | decodecode | 98 faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
|
D | gen_initramfs_list.sh | 92 my_mtime=$(find "$1" -printf "%T@\n" | sort -r | head -n 1)
|
/scripts/dtc/ |
D | livetree.c | 88 struct property *head = NULL; in reverse_properties() local 93 p->next = head; in reverse_properties() 94 head = p; in reverse_properties() 97 return head; in reverse_properties()
|
/scripts/coccinelle/iterators/ |
D | use_after_iter.cocci | 2 /// variable ends up pointing to an address at an offset from the list head,
|