Lines Matching refs:data
295 int nla_memcmp(const struct nlattr *nla, const void *data, in nla_memcmp() argument
301 d = memcmp(nla_data(nla), data, size); in nla_memcmp()
429 const void *data) in __nla_put() argument
434 memcpy(nla_data(nla), data, attrlen); in __nla_put()
447 void __nla_put_nohdr(struct sk_buff *skb, int attrlen, const void *data) in __nla_put_nohdr() argument
452 memcpy(start, data, attrlen); in __nla_put_nohdr()
466 int nla_put(struct sk_buff *skb, int attrtype, int attrlen, const void *data) in nla_put() argument
471 __nla_put(skb, attrtype, attrlen, data); in nla_put()
485 int nla_put_nohdr(struct sk_buff *skb, int attrlen, const void *data) in nla_put_nohdr() argument
490 __nla_put_nohdr(skb, attrlen, data); in nla_put_nohdr()
504 int nla_append(struct sk_buff *skb, int attrlen, const void *data) in nla_append() argument
509 memcpy(skb_put(skb, attrlen), data, attrlen); in nla_append()