Lines Matching refs:list_head
16 struct list_head { struct
17 struct list_head *next, *prev; argument
36 static __inline__ void __list_add(struct list_head * new, in __list_add()
37 struct list_head * prev, in __list_add()
38 struct list_head * next) in __list_add()
49 static __inline__ void list_add(struct list_head *new, struct list_head *head) in list_add()
57 static __inline__ void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
69 static __inline__ void __list_del(struct list_head * prev, in __list_del()
70 struct list_head * next) in __list_del()
76 static __inline__ void list_del(struct list_head *entry) in list_del()
81 static __inline__ int list_empty(struct list_head *head) in list_empty()
89 static __inline__ void list_splice(struct list_head *list, struct list_head *head) in list_splice()
91 struct list_head *first = list->next; in list_splice()
94 struct list_head *last = list->prev; in list_splice()
95 struct list_head *at = head->next; in list_splice()