Lines Matching refs:attrtype

698 struct nlattr *nla_find(const struct nlattr *head, int len, int attrtype)  in nla_find()  argument
704 if (nla_type(nla) == attrtype) in nla_find()
855 struct nlattr *__nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) in __nla_reserve() argument
860 nla->nla_type = attrtype; in __nla_reserve()
883 struct nlattr *__nla_reserve_64bit(struct sk_buff *skb, int attrtype, in __nla_reserve_64bit() argument
888 return __nla_reserve(skb, attrtype, attrlen); in __nla_reserve_64bit()
920 struct nlattr *nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) in nla_reserve() argument
925 return __nla_reserve(skb, attrtype, attrlen); in nla_reserve()
943 struct nlattr *nla_reserve_64bit(struct sk_buff *skb, int attrtype, int attrlen, in nla_reserve_64bit() argument
955 return __nla_reserve_64bit(skb, attrtype, attrlen, padattr); in nla_reserve_64bit()
988 void __nla_put(struct sk_buff *skb, int attrtype, int attrlen, in __nla_put() argument
993 nla = __nla_reserve(skb, attrtype, attrlen); in __nla_put()
1009 void __nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, in __nla_put_64bit() argument
1014 nla = __nla_reserve_64bit(skb, attrtype, attrlen, padattr); in __nla_put_64bit()
1047 int nla_put(struct sk_buff *skb, int attrtype, int attrlen, const void *data) in nla_put() argument
1052 __nla_put(skb, attrtype, attrlen, data); in nla_put()
1068 int nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, in nla_put_64bit() argument
1080 __nla_put_64bit(skb, attrtype, attrlen, data, padattr); in nla_put_64bit()