Home | History | Annotate | Download | only in include

Lines Matching defs:LIST_HEAD

13 struct list_head {
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)
43 static inline void list_add_tail(struct list_head *new, struct list_head *head)
48 static inline void __list_del(struct list_head * prev, struct list_head * next)
54 static inline void __list_del_entry(struct list_head *entry)
59 static inline void list_del(struct list_head *entry)
66 static inline int list_empty(const struct list_head *head)