Lines Matching refs:list_head

42 	struct list_head name = LIST_HEAD_INIT(name)
51 static inline void INIT_LIST_HEAD(struct list_head *list) in INIT_LIST_HEAD()
63 static inline void __list_add(struct list_head *new, in __list_add()
64 struct list_head *prev, in __list_add()
65 struct list_head *next) in __list_add()
81 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
94 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
106 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del()
112 static inline void __list_del_entry(struct list_head *entry) in __list_del_entry()
123 static inline void list_del(struct list_head *entry) in list_del()
137 static inline void list_replace(struct list_head *old, in list_replace()
138 struct list_head *new) in list_replace()
153 static inline void list_replace_init(struct list_head *old, in list_replace_init()
154 struct list_head *new) in list_replace_init()
165 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
176 static inline void list_move_tail(struct list_head *list, in list_move_tail()
177 struct list_head *head) in list_move_tail()
188 static inline int list_is_first(const struct list_head *list, const struct list_head *head) in list_is_first()
198 static inline int list_is_last(const struct list_head *list, const struct list_head *head) in list_is_last()
208 static inline int list_is_head(const struct list_head *list, const struct list_head *head) in list_is_head()
217 static inline int list_empty(const struct list_head *head) in list_empty()