Lines Matching refs:list_head
18 struct list_head { struct
19 struct list_head *next, *prev; argument
25 struct list_head name = LIST_HEAD_INIT(name)
27 static inline void INIT_LIST_HEAD(struct list_head *list) in INIT_LIST_HEAD()
39 static inline void __list_add(struct list_head *new, in __list_add()
40 struct list_head *prev, in __list_add()
41 struct list_head *next) in __list_add()
57 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
69 static inline void __list_del(struct list_head * prev, struct list_head * next) in __list_del()
85 static inline void __list_del_entry(struct list_head *entry) in __list_del_entry()
90 static inline void list_del(struct list_head *entry) in list_del()