Lines Matching refs:list_head
32 struct list_head { struct
33 struct list_head *next, *prev; argument
48 _INLINE_ void __list_add(struct list_head * add, in __list_add()
49 struct list_head * prev, in __list_add()
50 struct list_head * next) in __list_add()
66 _INLINE_ void list_add(struct list_head *add, struct list_head *head) in list_add()
79 _INLINE_ void list_add_tail(struct list_head *add, struct list_head *head) in list_add_tail()
91 _INLINE_ void __list_del(struct list_head * prev, in __list_del()
92 struct list_head * next) in __list_del()
105 _INLINE_ void list_del(struct list_head *entry) in list_del()
114 _INLINE_ void list_del_init(struct list_head *entry) in list_del_init()
124 _INLINE_ int list_empty(struct list_head *head) in list_empty()
134 _INLINE_ void list_splice(struct list_head *list, struct list_head *head) in list_splice()
136 struct list_head *first = list->next; in list_splice()
139 struct list_head *last = list->prev; in list_splice()
140 struct list_head *at = head->next; in list_splice()