Home | History | Annotate | Download | only in utils

Lines Matching refs:dl_list

13  * struct dl_list - Doubly-linked list
15 struct dl_list {
16 struct dl_list *next;
17 struct dl_list *prev;
20 static inline void dl_list_init(struct dl_list *list)
26 static inline void dl_list_add(struct dl_list *list, struct dl_list *item)
34 static inline void dl_list_add_tail(struct dl_list *list, struct dl_list *item)
39 static inline void dl_list_del(struct dl_list *item)
47 static inline int dl_list_empty(struct dl_list *list)
52 static inline unsigned int dl_list_len(struct dl_list *list)
54 struct dl_list *item;
93 struct dl_list name = { &(name), &(name) }