Lines Matching refs:list_head
20 struct list_head { struct
21 struct list_head *next; argument
22 struct list_head *prev; argument
27 struct list_head x = { &x, &x }
30 static inline void INIT_LIST_HEAD(struct list_head *p) in INIT_LIST_HEAD()
65 static inline void list_add(struct list_head *p, struct list_head *list) in list_add()
67 struct list_head *first = list->next; in list_add()
79 static inline void list_add_tail(struct list_head *p, struct list_head *list) in list_add_tail()
81 struct list_head *last = list->prev; in list_add_tail()
94 static inline void list_insert(struct list_head *p, in list_insert()
95 struct list_head *prev, in list_insert()
96 struct list_head *next) in list_insert()
105 static inline void list_del(struct list_head *p) in list_del()
112 static inline int list_empty(const struct list_head *p) in list_empty()