HomeSort by relevance Sort by last modified time
    Searched defs:list_head (Results 1 - 25 of 32) sorted by null

1 2

  /external/c-ares/
ares_cancel.c 29 struct list_node* list_head; local
33 list_head = &(channel->all_queries);
34 for (list_node = list_head->next; list_node != list_head; )
ares_destroy.c 42 struct list_node* list_head; local
48 list_head = &(channel->all_queries);
49 for (list_node = list_head->next; list_node != list_head; )
ares_timeout.c 37 struct list_node* list_head; local
51 list_head = &(channel->all_queries);
52 for (list_node = list_head->next; list_node != list_head;
ares_query.c 75 struct list_node* list_head; local
80 list_head = &(channel->queries_by_qid[qid % ARES_QID_TABLE_SIZE]);
81 for (list_node = list_head->next; list_node != list_head;
ares_process.c 507 struct list_node* list_head; local
518 list_head = &(channel->queries_by_timeout[t % ARES_TIMEOUT_TABLE_SIZE]);
519 for (list_node = list_head->next; list_node != list_head; )
542 struct list_node* list_head; local
563 list_head = &(channel->queries_by_qid[id % ARES_QID_TABLE_SIZE]);
564 for (list_node = list_head->next; list_node != list_head;
634 struct list_node list_head; local
649 ares__init_list_head(&list_head);
    [all...]
  /external/libnl/python/netlink/
utils.h 1 struct list_head { struct
2 struct list_head *next;
5 #define LIST_HEAD(name) \
6 struct list_head name = { &(name) }
8 static inline int list_empty(const struct list_head *head)
13 static inline void list_add(struct list_head *new, struct list_head *head)
19 static inline void list_del(struct list_head *entry, struct list_head *prev)
  /external/kmod/testsuite/
stripped-module.h 10 struct list_head { struct
11 struct list_head *next, *prev;
21 struct list_head list;
  /external/ltp/utils/ffsb-6.0-rc2/
list.h 9 struct list_head { struct
10 struct list_head *next, *prev;
13 void INIT_LIST_HEAD(struct list_head *list);
14 void __list_add(struct list_head *new, struct list_head *prev,
15 struct list_head *next);
16 void __list_del(struct list_head *prev, struct list_head *next);
17 void list_add(struct list_head *new, struct list_head *head)
    [all...]
  /system/core/libcutils/include/cutils/
list.h 81 #define list_head(list) ((list)->next) macro
  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/include/linux/
types.h 30 struct list_head { struct
31 struct list_head * next, * prev;
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/include/linux/
types.h 17 struct list_head { struct
18 struct list_head *next, *prev;
  /external/e2fsprogs/lib/ext2fs/
kernel-list.h 14 struct list_head { struct
15 struct list_head *next, *prev;
34 static __inline__ void __list_add(struct list_head * new,
35 struct list_head * prev,
36 struct list_head * next)
47 static __inline__ void list_add(struct list_head *new, struct list_head *head)
55 static __inline__ void list_add_tail(struct list_head *new, struct list_head *head)
67 static __inline__ void __list_del(struct list_head * prev
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
list.h 27 struct list_head { struct
28 struct list_head *next;
29 struct list_head *prev;
34 #define LIST_HEAD( name ) \
35 struct list_head name = LIST_HEAD_INIT ( name )
47 static inline void __list_add ( struct list_head *new,
48 struct list_head *prev,
49 struct list_head *next ) {
65 static inline void list_add ( struct list_head *new, struct list_head *head )
    [all...]
  /external/e2fsprogs/lib/blkid/
list.h 24 struct list_head { struct
25 struct list_head *next, *prev;
40 _INLINE_ void __list_add(struct list_head * add,
41 struct list_head * prev,
42 struct list_head * next)
58 _INLINE_ void list_add(struct list_head *add, struct list_head *head)
71 _INLINE_ void list_add_tail(struct list_head *add, struct list_head *head)
83 _INLINE_ void __list_del(struct list_head * prev
    [all...]
  /external/f2fs-tools/include/
list.h 13 struct list_head { struct
14 struct list_head *next, *prev;
19 #define LIST_HEAD(name) \
20 struct list_head name = LIST_HEAD_INIT(name)
22 static inline void INIT_LIST_HEAD(struct list_head *list)
28 static inline void __list_add(struct list_head *new,
29 struct list_head *prev,
30 struct list_head *next)
38 static inline void list_add(struct list_head *new, struct list_head *head
    [all...]
  /external/libdrm/
util_double_list.h 41 struct list_head struct
43 struct list_head *prev;
44 struct list_head *next;
47 static inline void list_inithead(struct list_head *item)
53 static inline void list_add(struct list_head *item, struct list_head *list)
61 static inline void list_addtail(struct list_head *item, struct list_head *list)
69 static inline void list_replace(struct list_head *from, struct list_head *to
    [all...]
  /external/ltp/testcases/kernel/syscalls/epoll2/include/
dbllist.h 9 #define DBL_LIST_HEAD(name) struct list_head name = DBL_LIST_HEAD_INIT(name)
18 struct list_head *pPrev = prev; \
19 struct list_head *pNext = next; \
32 struct list_head *pPrev = prev; \
33 struct list_head *pNext = next; \
48 struct list_head * first = (list)->pNext; \
50 struct list_head * last = (list)->pPrev; \
51 struct list_head * at = (head)->pNext; \
88 struct list_head struct
90 struct list_head *pNext
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_double_list.h 45 struct list_head struct
47 struct list_head *prev;
48 struct list_head *next;
51 static INLINE void list_inithead(struct list_head *item)
57 static INLINE void list_add(struct list_head *item, struct list_head *list)
65 static INLINE void list_addtail(struct list_head *item, struct list_head *list)
73 static INLINE void list_replace(struct list_head *from, struct list_head *to
    [all...]
  /external/v8/src/heap/
objects-visiting.cc 362 Object* list_head = VisitWeakList<T>(heap, context->get(index), retainer); local
365 context->set(index, list_head, UPDATE_WRITE_BARRIER);
371 heap->mark_compact_collector()->RecordSlot(context, head_slot, list_head);
  /external/blktrace/btt/
list.h 34 struct list_head { struct
35 struct list_head *next, *prev;
40 #define LIST_HEAD(name) \
41 struct list_head name = LIST_HEAD_INIT(name)
43 static inline void INIT_LIST_HEAD(struct list_head *list)
55 static inline void __list_add(struct list_head *new,
56 struct list_head *prev,
57 struct list_head *next)
73 static inline void list_add(struct list_head *new, struct list_head *head
    [all...]
  /external/ltp/testcases/realtime/include/
list.h 26 * access the container of the list from the list_head struct.
60 struct list_head { struct
61 struct list_head *next, *prev;
66 #define LIST_HEAD(name) \
67 struct list_head name = LIST_HEAD_INIT(name)
69 static inline void INIT_LIST_HEAD(struct list_head *list)
81 static inline void __list_add(struct list_head *new,
82 struct list_head *prev,
83 struct list_head *next)
99 static inline void list_add(struct list_head *new, struct list_head *head
    [all...]
  /external/syslinux/com32/include/linux/
list.h 23 struct list_head { struct
24 struct list_head *next, *prev;
29 #define LIST_HEAD(name) \
30 struct list_head name = LIST_HEAD_INIT(name)
32 static inline void INIT_LIST_HEAD(struct list_head *list)
44 static inline void __list_add(struct list_head *new,
45 struct list_head *prev,
46 struct list_head *next)
62 static inline void list_add(struct list_head *new, struct list_head *head
    [all...]
  /cts/hostsidetests/security/securityPatch/CVE-2016-8435/
local_pwn.h 87 struct list_head { struct
88 struct list_head *next, *prev;
102 struct list_head list;
109 struct list_head list;
  /external/iptables/libiptc/
linux_list.h 53 struct list_head { struct
54 struct list_head *next, *prev;
59 #define LIST_HEAD(name) \
60 struct list_head name = LIST_HEAD_INIT(name)
72 static inline void __list_add(struct list_head *new,
73 struct list_head *prev,
74 struct list_head *next)
90 static inline void list_add(struct list_head *new, struct list_head *head)
103 static inline void list_add_tail(struct list_head *new, struct list_head *head
    [all...]
  /external/libnetfilter_conntrack/include/internal/
linux_list.h 58 struct list_head { struct
59 struct list_head *next, *prev;
64 #define LIST_HEAD(name) \
65 struct list_head name = LIST_HEAD_INIT(name)
77 static inline void __list_add(struct list_head *new,
78 struct list_head *prev,
79 struct list_head *next)
95 static inline void list_add(struct list_head *new, struct list_head *head)
108 static inline void list_add_tail(struct list_head *new, struct list_head *head
    [all...]

Completed in 589 milliseconds

1 2