Lines Matching refs:data
294 int nla_memcmp(const struct nlattr *nla, const void *data, in nla_memcmp() argument
300 d = memcmp(nla_data(nla), data, size); in nla_memcmp()
428 const void *data) in __nla_put() argument
433 memcpy(nla_data(nla), data, attrlen); in __nla_put()
446 void __nla_put_nohdr(struct sk_buff *skb, int attrlen, const void *data) in __nla_put_nohdr() argument
451 memcpy(start, data, attrlen); in __nla_put_nohdr()
465 int nla_put(struct sk_buff *skb, int attrtype, int attrlen, const void *data) in nla_put() argument
470 __nla_put(skb, attrtype, attrlen, data); in nla_put()
484 int nla_put_nohdr(struct sk_buff *skb, int attrlen, const void *data) in nla_put_nohdr() argument
489 __nla_put_nohdr(skb, attrlen, data); in nla_put_nohdr()
503 int nla_append(struct sk_buff *skb, int attrlen, const void *data) in nla_append() argument
508 memcpy(skb_put(skb, attrlen), data, attrlen); in nla_append()