Lines Matching refs:list_head
14 struct list_head { struct
15 struct list_head *next, *prev; argument
34 static __inline__ void __list_add(struct list_head * new, in __list_add()
35 struct list_head * prev, in __list_add()
36 struct list_head * next) in __list_add()
47 static __inline__ void list_add(struct list_head *new, struct list_head *head) in list_add()
55 static __inline__ void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
67 static __inline__ void __list_del(struct list_head * prev, in __list_del()
68 struct list_head * next) in __list_del()
74 static __inline__ void list_del(struct list_head *entry) in list_del()
79 static __inline__ int list_empty(struct list_head *head) in list_empty()
87 static __inline__ void list_splice(struct list_head *list, struct list_head *head) in list_splice()
89 struct list_head *first = list->next; in list_splice()
92 struct list_head *last = list->prev; in list_splice()
93 struct list_head *at = head->next; in list_splice()