Lines Matching refs:prev
24 struct list_head *next, *prev; member
82 struct list_head *prev, in __list_add() argument
85 next->prev = _new; in __list_add()
87 _new->prev = prev; in __list_add()
88 prev->next = _new; in __list_add()
101 __list_add(_new, head->prev, head); in list_add_tail()
111 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del() argument
113 next->prev = prev; in __list_del()
114 prev->next = next; in __list_del()
127 __list_del(entry->prev, entry->next); in list_del()
129 entry->prev = (struct list_head*)LIST_POISON2; in list_del()