Lines Matching refs:attrtype

284 struct nlattr *nla_find(const struct nlattr *head, int len, int attrtype)  in nla_find()  argument
290 if (nla_type(nla) == attrtype) in nla_find()
429 struct nlattr *__nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) in __nla_reserve() argument
434 nla->nla_type = attrtype; in __nla_reserve()
457 struct nlattr *__nla_reserve_64bit(struct sk_buff *skb, int attrtype, in __nla_reserve_64bit() argument
463 return __nla_reserve(skb, attrtype, attrlen); in __nla_reserve_64bit()
495 struct nlattr *nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) in nla_reserve() argument
500 return __nla_reserve(skb, attrtype, attrlen); in nla_reserve()
518 struct nlattr *nla_reserve_64bit(struct sk_buff *skb, int attrtype, int attrlen, in nla_reserve_64bit() argument
530 return __nla_reserve_64bit(skb, attrtype, attrlen, padattr); in nla_reserve_64bit()
563 void __nla_put(struct sk_buff *skb, int attrtype, int attrlen, in __nla_put() argument
568 nla = __nla_reserve(skb, attrtype, attrlen); in __nla_put()
584 void __nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, in __nla_put_64bit() argument
589 nla = __nla_reserve_64bit(skb, attrtype, attrlen, padattr); in __nla_put_64bit()
622 int nla_put(struct sk_buff *skb, int attrtype, int attrlen, const void *data) in nla_put() argument
627 __nla_put(skb, attrtype, attrlen, data); in nla_put()
643 int nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, in nla_put_64bit() argument
655 __nla_put_64bit(skb, attrtype, attrlen, data, padattr); in nla_put_64bit()