Home | History | Annotate | Download | only in ffsb-6.0-rc2

Lines Matching defs:LIST_HEAD

9 struct list_head {
10 struct list_head *next, *prev;
13 void INIT_LIST_HEAD(struct list_head *list);
14 void __list_add(struct list_head *new, struct list_head *prev,
15 struct list_head *next);
16 void __list_del(struct list_head *prev, struct list_head *next);
17 void list_add(struct list_head *new, struct list_head *head);
18 void list_add_tail(struct list_head *new, struct list_head *head);
19 void list_del(struct list_head *entry);
20 void list_replace(struct list_head *old, struct list_head *new);
24 #define LIST_HEAD(name) struct list_head name = LIST_HEAD_INIT(name)