Lines Matching refs:head

57  *   nlmsg_data(nlh)			head of message payload
59 * nlmsg_attrdata(nlh, hdrlen) head of attributes data
127 * nla_data(nla) head of attribute payload
501 int __nla_validate(const struct nlattr *head, int len, int maxtype,
504 int __nla_parse(struct nlattr **tb, int maxtype, const struct nlattr *head,
508 struct nlattr *nla_find(const struct nlattr *head, int len, int attrtype);
565 * nlmsg_data - head of message payload
583 * nlmsg_attrdata - head of attributes data
638 * @head: head of attribute stream
651 const struct nlattr *head, int len,
655 return __nla_parse(tb, maxtype, head, len, policy,
663 * @head: head of attribute stream
676 const struct nlattr *head, int len,
680 return __nla_parse(tb, maxtype, head, len, policy,
688 * @head: head of attribute stream
701 const struct nlattr *head,
706 return __nla_parse(tb, maxtype, head, len, policy,
813 * @head: head of attribute stream
826 static inline int nla_validate_deprecated(const struct nlattr *head, int len,
831 return __nla_validate(head, len, maxtype, policy, NL_VALIDATE_LIBERAL,
837 * @head: head of attribute stream
849 static inline int nla_validate(const struct nlattr *head, int len, int maxtype,
853 return __nla_validate(head, len, maxtype, policy, NL_VALIDATE_STRICT,
1060 * @head: head of message stream
1064 #define nlmsg_for_each_msg(pos, head, len, rem) \
1065 for (pos = head, rem = len; \
1134 * nla_data - head of payload
1916 * @head: head of attribute stream
1920 #define nla_for_each_attr(pos, head, len, rem) \
1921 for (pos = head, rem = len; \