Home | History | Annotate | Download | only in netlink

Lines Matching refs:NL_LIST_HEAD

15 struct nl_list_head
17 struct nl_list_head * next;
18 struct nl_list_head * prev;
21 static inline void NL_INIT_LIST_HEAD(struct nl_list_head *list)
27 static inline void __nl_list_add(struct nl_list_head *obj,
28 struct nl_list_head *prev,
29 struct nl_list_head *next)
37 static inline void nl_list_add_tail(struct nl_list_head *obj,
38 struct nl_list_head *head)
43 static inline void nl_list_add_head(struct nl_list_head *obj,
44 struct nl_list_head *head)
49 static inline void nl_list_del(struct nl_list_head *obj)
55 static inline int nl_list_empty(struct nl_list_head *head)
73 #define NL_LIST_HEAD(name) \
74 struct nl_list_head name = { &(name), &(name) }