Lines Matching refs:List
8 struct List struct
10 struct List *prev, *next; argument
14 static inline void list_init(struct List *list) in list_init()
27 static inline void list_add(struct List *entry, struct List *node) in list_add()
44 static inline void list_append(struct List *entry, struct List *node) in list_append()
47 struct List *tail = entry->prev; in list_append()
55 static inline void list_del(struct List *entry) in list_del()
76 static inline void list_replace(struct List *old, struct List *new) in list_replace()
89 static inline bool list_empty(struct List *entry) in list_empty()
108 static inline struct List *list_prev(struct List *entry) in list_prev()
122 static inline struct List *list_next(struct List *entry) in list_next()