Lines Matching refs:attrtype
491 struct nlattr *nla_find(const struct nlattr *head, int len, int attrtype) in nla_find() argument
497 if (nla_type(nla) == attrtype) in nla_find()
636 struct nlattr *__nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) in __nla_reserve() argument
641 nla->nla_type = attrtype; in __nla_reserve()
664 struct nlattr *__nla_reserve_64bit(struct sk_buff *skb, int attrtype, in __nla_reserve_64bit() argument
670 return __nla_reserve(skb, attrtype, attrlen); in __nla_reserve_64bit()
702 struct nlattr *nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) in nla_reserve() argument
707 return __nla_reserve(skb, attrtype, attrlen); in nla_reserve()
725 struct nlattr *nla_reserve_64bit(struct sk_buff *skb, int attrtype, int attrlen, in nla_reserve_64bit() argument
737 return __nla_reserve_64bit(skb, attrtype, attrlen, padattr); in nla_reserve_64bit()
770 void __nla_put(struct sk_buff *skb, int attrtype, int attrlen, in __nla_put() argument
775 nla = __nla_reserve(skb, attrtype, attrlen); in __nla_put()
791 void __nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, in __nla_put_64bit() argument
796 nla = __nla_reserve_64bit(skb, attrtype, attrlen, padattr); in __nla_put_64bit()
829 int nla_put(struct sk_buff *skb, int attrtype, int attrlen, const void *data) in nla_put() argument
834 __nla_put(skb, attrtype, attrlen, data); in nla_put()
850 int nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, in nla_put_64bit() argument
862 __nla_put_64bit(skb, attrtype, attrlen, data, padattr); in nla_put_64bit()