• Home
  • Raw
  • Download

Lines Matching refs:list_head

41 struct list_head {  struct
42 struct list_head *next, *prev; argument
48 struct list_head name = LIST_HEAD_INIT(name)
60 static inline void __list_add(struct list_head *new, in __list_add()
61 struct list_head *prev, in __list_add()
62 struct list_head *next) in __list_add()
78 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
91 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
103 static inline void __list_del(struct list_head * prev, struct list_head * next) in __list_del()
115 static inline void list_del(struct list_head *entry) in list_del()
126 static inline void list_del_init(struct list_head *entry) in list_del_init()
137 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
148 static inline void list_move_tail(struct list_head *list, in list_move_tail()
149 struct list_head *head) in list_move_tail()
159 static inline int list_empty(struct list_head *head) in list_empty()
164 static inline void __list_splice(struct list_head *list, in __list_splice()
165 struct list_head *head) in __list_splice()
167 struct list_head *first = list->next; in __list_splice()
168 struct list_head *last = list->prev; in __list_splice()
169 struct list_head *at = head->next; in __list_splice()
183 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
196 static inline void list_splice_init(struct list_head *list, in list_splice_init()
197 struct list_head *head) in list_splice_init()