Lines Matching defs:next
37 * sometimes we already know the next/prev entries and we can
43 struct list_head *next, *prev;
49 list->next = list;
57 * the prev/next entries already!
61 struct list_head *prev, struct list_head *next)
63 next->prev = new;
64 new->next = next;
66 prev->next = new;
70 struct list_head *prev, struct list_head *next);
102 for (pos = list_entry((head)->next, typeof(*pos), member); \
104 pos = list_entry(pos->member.next, typeof(*pos), member))