Lines Matching defs:head
36 MppListNode *head; member
87 #define list_for_each_safe(pos, n, head) \ argument
112 #define list_for_each_entry(pos, head, type, member) \ argument
117 #define list_for_each_entry_safe(pos, n, head, type, member) \ argument
123 #define list_for_each_entry_reverse(pos, head, type, member) \ argument
128 #define list_for_each_entry_safe_reverse(pos, n, head, type, member) \ argument
144 static __inline void list_add(struct list_head *_new, struct list_head *head) in list_add()
149 static __inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail()
167 static __inline void list_move(struct list_head *list, struct list_head *head) in list_move()
173 static __inline void list_move_tail(struct list_head *list, struct list_head *head) in list_move_tail()
179 static __inline int list_is_last(const struct list_head *list, const struct list_head *head) in list_is_last()
184 static __inline int list_empty(struct list_head *head) in list_empty()