Home
last modified time | relevance | path

Searched refs:head (Results 1 – 11 of 11) sorted by relevance

/scripts/kconfig/
Dlist.h48 #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()
Dmenu.c524 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()
Dqconf.cc1014 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 …]
Dmconf.c360 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()
Dlkc_proto.h25 *head));
27 *head));
/scripts/
Dsetlocalversion46 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`"
Dver_linux65 ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
Ddecodecode98 faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
Dgen_initramfs_list.sh92 my_mtime=$(find "$1" -printf "%T@\n" | sort -r | head -n 1)
/scripts/dtc/
Dlivetree.c88 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/
Duse_after_iter.cocci2 /// variable ends up pointing to an address at an offset from the list head,