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
513 int __nla_validate(const struct nlattr *head, int len, int maxtype,
516 int __nla_parse(struct nlattr **tb, int maxtype, const struct nlattr *head,
520 struct nlattr *nla_find(const struct nlattr *head, int len, int attrtype);
577 * nlmsg_data - head of message payload
595 * nlmsg_attrdata - head of attributes data
650 * @head: head of attribute stream
663 const struct nlattr *head, int len,
667 return __nla_parse(tb, maxtype, head, len, policy,
675 * @head: head of attribute stream
688 const struct nlattr *head, int len,
692 return __nla_parse(tb, maxtype, head, len, policy,
700 * @head: head of attribute stream
713 const struct nlattr *head,
718 return __nla_parse(tb, maxtype, head, len, policy,
828 * @head: head of attribute stream
840 static inline int nla_validate_deprecated(const struct nlattr *head, int len,
845 return __nla_validate(head, len, maxtype, policy, NL_VALIDATE_LIBERAL,
851 * @head: head of attribute stream
863 static inline int nla_validate(const struct nlattr *head, int len, int maxtype,
867 return __nla_validate(head, len, maxtype, policy, NL_VALIDATE_STRICT,
1106 * @head: head of message stream
1110 #define nlmsg_for_each_msg(pos, head, len, rem) \
1111 for (pos = head, rem = len; \
1180 * nla_data - head of payload
1962 * @head: head of attribute stream
1966 #define nla_for_each_attr(pos, head, len, rem) \
1967 for (pos = head, rem = len; \