Lines Matching refs:attrtype
745 struct nlattr *nla_find(const struct nlattr *head, int len, int attrtype) in nla_find() argument
751 if (nla_type(nla) == attrtype) in nla_find()
902 struct nlattr *__nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) in __nla_reserve() argument
907 nla->nla_type = attrtype; in __nla_reserve()
930 struct nlattr *__nla_reserve_64bit(struct sk_buff *skb, int attrtype, in __nla_reserve_64bit() argument
935 return __nla_reserve(skb, attrtype, attrlen); in __nla_reserve_64bit()
967 struct nlattr *nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) in nla_reserve() argument
972 return __nla_reserve(skb, attrtype, attrlen); in nla_reserve()
990 struct nlattr *nla_reserve_64bit(struct sk_buff *skb, int attrtype, int attrlen, in nla_reserve_64bit() argument
1002 return __nla_reserve_64bit(skb, attrtype, attrlen, padattr); in nla_reserve_64bit()
1035 void __nla_put(struct sk_buff *skb, int attrtype, int attrlen, in __nla_put() argument
1040 nla = __nla_reserve(skb, attrtype, attrlen); in __nla_put()
1056 void __nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, in __nla_put_64bit() argument
1061 nla = __nla_reserve_64bit(skb, attrtype, attrlen, padattr); in __nla_put_64bit()
1094 int nla_put(struct sk_buff *skb, int attrtype, int attrlen, const void *data) in nla_put() argument
1099 __nla_put(skb, attrtype, attrlen, data); in nla_put()
1115 int nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, in nla_put_64bit() argument
1127 __nla_put_64bit(skb, attrtype, attrlen, data, padattr); in nla_put_64bit()