Home
last modified time | relevance | path

Searched refs:list_head (Results 1 – 25 of 190) sorted by relevance

12345678

/third_party/e2fsprogs/lib/ext2fs/
Dkernel-list.h14 struct list_head { struct
15 struct list_head *next, *prev; argument
34 static __inline__ void __list_add(struct list_head * new, in __list_add()
35 struct list_head * prev, in __list_add()
36 struct list_head * next) in __list_add()
47 static __inline__ void list_add(struct list_head *new, struct list_head *head) in list_add()
55 static __inline__ void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
67 static __inline__ void __list_del(struct list_head * prev, in __list_del()
68 struct list_head * next) in __list_del()
74 static __inline__ void list_del(struct list_head *entry) in list_del()
[all …]
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dlist.h50 struct list_head name = LINUX_LIST_HEAD_INIT(name)
54 struct list_head { struct
55 struct list_head *next; argument
56 struct list_head *prev; argument
63 INIT_LIST_HEAD(struct list_head *list) in INIT_LIST_HEAD()
70 list_empty(const struct list_head *head) in list_empty()
77 list_empty_careful(const struct list_head *head) in list_empty_careful()
79 struct list_head *next = head->next; in list_empty_careful()
85 __list_del(struct list_head *prev, struct list_head *next) in __list_del()
92 __list_del_entry(struct list_head *entry) in __list_del_entry()
[all …]
/third_party/e2fsprogs/lib/blkid/
Dlist.h32 struct list_head { struct
33 struct list_head *next, *prev; argument
48 _INLINE_ void __list_add(struct list_head * add, in __list_add()
49 struct list_head * prev, in __list_add()
50 struct list_head * next) in __list_add()
66 _INLINE_ void list_add(struct list_head *add, struct list_head *head) in list_add()
79 _INLINE_ void list_add_tail(struct list_head *add, struct list_head *head) in list_add_tail()
91 _INLINE_ void __list_del(struct list_head * prev, in __list_del()
92 struct list_head * next) in __list_del()
105 _INLINE_ void list_del(struct list_head *entry) in list_del()
[all …]
DblkidP.h44 struct list_head bid_devs; /* All devices in the cache */
45 struct list_head bid_tags; /* All tags for this device */
69 struct list_head bit_tags; /* All tags for this device */
70 struct list_head bit_names; /* All tags with given NAME */
99 struct list_head bic_devs; /* List head of all devices */
100 struct list_head bic_tags; /* List head of all tag types */
/third_party/ltp/testcases/realtime/include/
Dlist.h60 struct list_head { struct
61 struct list_head *next, *prev; argument
67 struct list_head name = LIST_HEAD_INIT(name)
69 static inline void INIT_LIST_HEAD(struct list_head *list) in INIT_LIST_HEAD()
81 static inline void __list_add(struct list_head *new, in __list_add()
82 struct list_head *prev, in __list_add()
83 struct list_head *next) in __list_add()
99 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
112 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
124 static inline void __list_del(struct list_head * prev, struct list_head * next) in __list_del()
[all …]
/third_party/uboot/u-boot-2020.01/include/linux/
Dlist.h22 struct list_head { struct
23 struct list_head *next, *prev; argument
29 struct list_head name = LIST_HEAD_INIT(name)
31 static inline void INIT_LIST_HEAD(struct list_head *list) in INIT_LIST_HEAD()
43 static inline void __list_add(struct list_head *new, in __list_add()
44 struct list_head *prev, in __list_add()
45 struct list_head *next) in __list_add()
61 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
74 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
86 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del()
[all …]
Dlist_sort.h6 struct list_head;
8 void list_sort(void *priv, struct list_head *head,
9 int (*cmp)(void *priv, struct list_head *a,
10 struct list_head *b));
/third_party/exfat-utils/include/
Dlist.h32 struct list_head { struct
33 struct list_head *next, *prev; argument
39 struct list_head name = LIST_HEAD_INIT(name)
51 static inline void __list_add(struct list_head *new, in __list_add()
52 struct list_head *prev, in __list_add()
53 struct list_head *next) in __list_add()
69 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
82 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
94 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del()
106 static inline void list_del(struct list_head *entry) in list_del()
[all …]
/third_party/uboot/u-boot-2020.01/scripts/kconfig/
Dlist.h24 struct list_head { struct
25 struct list_head *next, *prev; argument
32 struct list_head name = LIST_HEAD_INIT(name)
71 static inline int list_empty(const struct list_head *head) in list_empty()
82 static inline void __list_add(struct list_head *_new, in __list_add()
83 struct list_head *prev, in __list_add()
84 struct list_head *next) in __list_add()
100 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail()
112 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del()
126 static inline void list_del(struct list_head *entry) in list_del()
[all …]
/third_party/quickjs/
Dlist.h31 struct list_head { struct
32 struct list_head *prev; argument
33 struct list_head *next; argument
42 static inline void init_list_head(struct list_head *head) in init_list_head()
49 static inline void __list_add(struct list_head *el, in __list_add()
50 struct list_head *prev, struct list_head *next) in __list_add()
59 static inline void list_add(struct list_head *el, struct list_head *head) in list_add()
65 static inline void list_add_tail(struct list_head *el, struct list_head *head) in list_add_tail()
70 static inline void list_del(struct list_head *el) in list_del()
72 struct list_head *prev, *next; in list_del()
[all …]
/third_party/uboot/u-boot-2020.01/lib/
Dlist_sort.c20 static struct list_head *merge(void *priv, in merge()
21 int (*cmp)(void *priv, struct list_head *a, in merge()
22 struct list_head *b), in merge()
23 struct list_head *a, struct list_head *b) in merge()
25 struct list_head head, *tail = &head; in merge()
50 int (*cmp)(void *priv, struct list_head *a, in merge_and_restore_back_links()
51 struct list_head *b), in merge_and_restore_back_links()
52 struct list_head *head, in merge_and_restore_back_links()
53 struct list_head *a, struct list_head *b) in merge_and_restore_back_links()
55 struct list_head *tail = head; in merge_and_restore_back_links()
[all …]
/third_party/node/deps/cares/src/lib/
Dares_cancel.c30 struct list_node* list_head; in ares_cancel() local
40 list_head = &(channel->all_queries); in ares_cancel()
41 list_head_copy.prev = list_head->prev; in ares_cancel()
42 list_head_copy.next = list_head->next; in ares_cancel()
45 list_head->prev = list_head; in ares_cancel()
46 list_head->next = list_head; in ares_cancel()
Dares_timeout.c42 struct list_node* list_head; in ares_timeout() local
56 list_head = &(channel->all_queries); in ares_timeout()
57 for (list_node = list_head->next; list_node != list_head; in ares_timeout()
/third_party/cares/
Dares_cancel.c30 struct list_node* list_head; in ares_cancel() local
40 list_head = &(channel->all_queries); in ares_cancel()
41 list_head_copy.prev = list_head->prev; in ares_cancel()
42 list_head_copy.next = list_head->next; in ares_cancel()
45 list_head->prev = list_head; in ares_cancel()
46 list_head->next = list_head; in ares_cancel()
Dares_timeout.c42 struct list_node* list_head; in ares_timeout() local
56 list_head = &(channel->all_queries); in ares_timeout()
57 for (list_node = list_head->next; list_node != list_head; in ares_timeout()
/third_party/libnl/python/netlink/
Dutils.h1 struct list_head { struct
2 struct list_head *next; argument
6 struct list_head name = { &(name) }
8 static inline int list_empty(const struct list_head *head) in list_empty()
13 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
19 static inline void list_del(struct list_head *entry, struct list_head *prev) in list_del()
/third_party/lwip/test/unit/core/
Dtest_timers.c14 struct sys_timeo** list_head = sys_timeouts_get_next_timeout(); in timers_setup() local
15 old_list_head = *list_head; in timers_setup()
16 *list_head = NULL; in timers_setup()
22 struct sys_timeo** list_head = sys_timeouts_get_next_timeout(); in timers_teardown() local
23 *list_head = old_list_head; in timers_teardown()
49 struct sys_timeo** list_head = sys_timeouts_get_next_timeout(); in do_test_cyclic_timers() local
63 …fail_unless((*list_head)->time == (u32_t)(lwip_sys_now + test_cyclic.interval_ms - HANDLER_EXECUTI… in do_test_cyclic_timers()
80 fail_unless((*list_head)->time == (u32_t)(lwip_sys_now + test_cyclic.interval_ms)); in do_test_cyclic_timers()
130 struct sys_timeo** list_head = sys_timeouts_get_next_timeout(); in do_test_timers() local
142 fail_unless((*list_head)->time == (u32_t)(lwip_sys_now + 5)); in do_test_timers()
[all …]
/third_party/libdrm/
Dutil_double_list.h41 struct list_head struct
43 struct list_head *prev; argument
44 struct list_head *next; argument
47 static inline void list_inithead(struct list_head *item) in list_inithead()
53 static inline void list_add(struct list_head *item, struct list_head *list) in list_add()
61 static inline void list_addtail(struct list_head *item, struct list_head *list) in list_addtail()
69 static inline void list_replace(struct list_head *from, struct list_head *to) in list_replace()
77 static inline void list_del(struct list_head *item) in list_del()
83 static inline void list_delinit(struct list_head *item) in list_delinit()
/third_party/libusb/libusb/
Dlibusbi.h121 struct list_head { struct
122 struct list_head *prev, *next; argument
167 static inline void list_init(struct list_head *entry) in list_init()
172 static inline void list_add(struct list_head *entry, struct list_head *head) in list_add()
181 static inline void list_add_tail(struct list_head *entry, in list_add_tail()
182 struct list_head *head) in list_add_tail()
191 static inline void list_del(struct list_head *entry) in list_del()
198 static inline void list_cut(struct list_head *list, struct list_head *head) in list_cut()
213 static inline void list_splice_front(struct list_head *list, struct list_head *head) in list_splice_front()
330 struct list_head usb_devs;
[all …]
/third_party/uboot/u-boot-2020.01/fs/ubifs/
Dubifs.h143 struct list_head i_mmap_nonlinear;/*list VM_NONLINEAR mappings */
154 struct list_head private_list; /* ditto */
217 struct list_head i_wb_list; /* backing dev IO list */
218 struct list_head i_lru; /* inode LRU list */
219 struct list_head i_sb_list;
234 struct list_head i_devices;
288 struct list_head s_list; /* Keep this first */
309 struct list_head s_inodes; /* all inodes */
313 struct list_head s_mounts; /* list of mounts; _not_ for fs use */
447 struct list_head f_ep_links;
[all …]
/third_party/libdrm/etnaviv/
Detnaviv_priv.h52 struct list_head list;
112 struct list_head list; /* bucket-list entry */
159 struct list_head domains;
165 struct list_head head;
166 struct list_head signals;
173 struct list_head head;
/third_party/uboot/u-boot-2020.01/include/
Defi_loader.h186 struct list_head link;
203 struct list_head link;
206 struct list_head open_infos;
241 struct list_head link;
243 struct list_head protocols;
284 struct list_head link;
285 struct list_head queue_link;
298 extern struct list_head efi_obj_list;
300 extern struct list_head efi_events;
313 struct list_head link;
[all …]
/third_party/uboot/u-boot-2020.01/include/jffs2/
Dload_kernel.h26 struct list_head link;
29 struct list_head parts; /* partitions */
33 struct list_head link;
45 struct list_head link;
/third_party/e2fsprogs/e2fsck/
Drevoke.c106 struct list_head hash;
119 struct list_head *hash_table;
125 struct list_head *,
144 struct list_head *hash_list; in insert_revoke_hash()
173 struct list_head *hash_list; in find_revoke_record()
240 kmalloc(hash_size * sizeof(struct list_head), GFP_KERNEL); in journal_init_revoke_table()
257 struct list_head *hash_list; in journal_destroy_revoke_table()
489 struct list_head *hash_list; in jbd2_clear_buffer_revoked_flags()
490 struct list_head *list_entry; in jbd2_clear_buffer_revoked_flags()
531 struct list_head *log_bufs, in journal_write_revoke_records()
[all …]
/third_party/exfat-utils/fsck/
Dfsck.h14 struct list_head children;
15 struct list_head sibling;
16 struct list_head list;
67 struct list_head dir_list;

12345678