Searched defs:list_head (Results 1 - 13 of 13) sorted by relevance

/external/linux-tools-perf/util/include/linux/
H A Dtypes.h13 struct list_head { struct
14 struct list_head *next, *prev;
/external/e2fsprogs/lib/blkid/
H A Dlist.h24 struct list_head { struct
25 struct list_head *next, *prev;
31 struct list_head name = LIST_HEAD_INIT(name)
43 _INLINE_ void __list_add(struct list_head * add,
44 struct list_head * prev,
45 struct list_head * next)
61 _INLINE_ void list_add(struct list_head *add, struct list_head *head)
74 _INLINE_ void list_add_tail(struct list_head *add, struct list_head *hea
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-list.h14 struct list_head { struct
15 struct list_head *next, *prev;
21 struct list_head name = { &name, &name }
37 static __inline__ void __list_add(struct list_head * new,
38 struct list_head * prev,
39 struct list_head * next)
50 static __inline__ void list_add(struct list_head *new, struct list_head *head)
58 static __inline__ void list_add_tail(struct list_head *new, struct list_head *hea
[all...]
/external/oprofile/libutil/
H A Dop_list.h24 struct list_head { struct
25 struct list_head * next, * prev;
34 static __inline__ void list_init(struct list_head * ptr)
46 static __inline__ void __list_add(struct list_head * new_entry,
47 struct list_head * prev,
48 struct list_head * next)
64 static __inline__ void list_add(struct list_head * new_entry, struct list_head * head)
77 static __inline__ void list_add_tail(struct list_head * new_entry, struct list_head * hea
[all...]
/external/blktrace/btt/
H A Dlist.h34 struct list_head { struct
35 struct list_head *next, *prev;
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)
86 static inline void list_add_tail(struct list_head *ne
[all...]
/external/srtp/crypto/test/
H A Dsha1_driver.c71 hash_test_case_t *list_head = *list_ptr; local
91 test_case->next_test_case = list_head;
/external/yaffs2/yaffs2/
H A Ddevextras.h56 struct list_head { struct
57 struct list_head *next, *prev;
63 struct list_head name = LIST_HEAD_INIT(name)
75 static __inline__ void __list_add(struct list_head *new,
76 struct list_head *prev,
77 struct list_head *next)
93 static __inline__ void list_add(struct list_head *new, struct list_head *head)
106 static __inline__ void list_add_tail(struct list_head *new,
107 struct list_head *hea
[all...]
/external/iptables/libiptc/
H A Dlinux_list.h53 struct list_head { struct
54 struct list_head *next, *prev;
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 *hea
[all...]
/external/kernel-headers/original/linux/
H A Dlist.h21 struct list_head { struct
22 struct list_head *next, *prev;
28 struct list_head name = LIST_HEAD_INIT(name)
30 static inline void INIT_LIST_HEAD(struct list_head *list)
42 static inline void __list_add(struct list_head *new,
43 struct list_head *prev,
44 struct list_head *next)
60 static inline void list_add(struct list_head *new, struct list_head *head)
73 static inline void list_add_tail(struct list_head *ne
[all...]
/external/libusb/libusb/
H A Dlibusbi.h39 struct list_head { struct
40 struct list_head *prev, *next;
44 * ptr - the address of this list_head element in "type"
46 * member - the list_head element in "type"
54 * member - the list_head element in "pos"
69 static inline void list_init(struct list_head *entry)
74 static inline void list_add(struct list_head *entry, struct list_head *head)
83 static inline void list_add_tail(struct list_head *entry,
84 struct list_head *hea
[all...]
/external/libusb_aah/libusb/
H A Dlibusbi.h52 struct list_head { struct
53 struct list_head *prev, *next;
57 * ptr - the address of this list_head element in "type"
59 * member - the list_head element in "type"
67 * member - the list_head element in "pos"
83 static inline void list_init(struct list_head *entry)
88 static inline void list_add(struct list_head *entry, struct list_head *head)
97 static inline void list_add_tail(struct list_head *entry,
98 struct list_head *hea
[all...]
/external/qemu/android/
H A Dasync-socket.c410 AsyncSocketIO** list_head,
413 AsyncSocketIO* const ret = *list_head;
415 *list_head = ret->next;
417 if (*list_head == NULL) {
457 * list_head, list_tail - Pointers to the list head and tail.
464 AsyncSocketIO** list_head,
470 while (*list_head != NULL && io != *list_head) {
471 prev = *list_head;
472 list_head
409 _async_socket_pull_first_io(AsyncSocket* as, AsyncSocketIO** list_head, AsyncSocketIO** list_tail) argument
463 _async_socket_remove_io(AsyncSocket* as, AsyncSocketIO** list_head, AsyncSocketIO** list_tail, AsyncSocketIO* io) argument
500 _async_socket_advance_io(AsyncSocket* as, AsyncSocketIO** list_head, AsyncSocketIO** list_tail) argument
[all...]
/external/sepolicy/tools/
H A Dcheck_seapp.c175 static line_order_list *list_head = NULL; variable
724 if (list_head == NULL)
725 list_head = list_tail = node;
745 cursor = list_head;
927 cursor = list_head;

Completed in 391 milliseconds