• Home
  • Raw
  • Download

Lines Matching refs:nlmsghdr

454 	struct nlmsghdr		*nlh;
496 int (*cb)(struct sk_buff *, struct nlmsghdr *,
568 static inline void *nlmsg_data(const struct nlmsghdr *nlh) in nlmsg_data()
577 static inline int nlmsg_len(const struct nlmsghdr *nlh) in nlmsg_len()
587 static inline struct nlattr *nlmsg_attrdata(const struct nlmsghdr *nlh, in nlmsg_attrdata()
599 static inline int nlmsg_attrlen(const struct nlmsghdr *nlh, int hdrlen) in nlmsg_attrlen()
609 static inline int nlmsg_ok(const struct nlmsghdr *nlh, int remaining) in nlmsg_ok()
611 return (remaining >= (int) sizeof(struct nlmsghdr) && in nlmsg_ok()
612 nlh->nlmsg_len >= sizeof(struct nlmsghdr) && in nlmsg_ok()
624 static inline struct nlmsghdr *
625 nlmsg_next(const struct nlmsghdr *nlh, int *remaining) in nlmsg_next()
631 return (struct nlmsghdr *) ((unsigned char *) nlh + totlen); in nlmsg_next()
722 static inline int __nlmsg_parse(const struct nlmsghdr *nlh, int hdrlen, in __nlmsg_parse()
748 static inline int nlmsg_parse(const struct nlmsghdr *nlh, int hdrlen, in nlmsg_parse()
767 static inline int nlmsg_parse_deprecated(const struct nlmsghdr *nlh, int hdrlen, in nlmsg_parse_deprecated()
787 nlmsg_parse_deprecated_strict(const struct nlmsghdr *nlh, int hdrlen, in nlmsg_parse_deprecated_strict()
804 static inline struct nlattr *nlmsg_find_attr(const struct nlmsghdr *nlh, in nlmsg_find_attr()
865 static inline int nlmsg_validate_deprecated(const struct nlmsghdr *nlh, in nlmsg_validate_deprecated()
886 static inline int nlmsg_report(const struct nlmsghdr *nlh) in nlmsg_report()
914 static inline struct nlmsghdr *nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, in nlmsg_put()
934 static inline struct nlmsghdr *nlmsg_put_answer(struct sk_buff *skb, in nlmsg_put_answer()
965 static inline void nlmsg_end(struct sk_buff *skb, struct nlmsghdr *nlh) in nlmsg_end()
1004 static inline void nlmsg_cancel(struct sk_buff *skb, struct nlmsghdr *nlh) in nlmsg_cancel()
1086 struct nlmsghdr *nlh) in nl_dump_check_consistent()