Searched defs:nla_put (Results 1 - 1 of 1) sorted by relevance

/external/libnl/lib/
H A Dattr.c140 * // The binary structure is appened to the message using nla_put()
142 * nla_put(msg, ATTR_MY_STRUCT, sizeof(foo), &foo);
837 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data) function
858 * Equivalent to nla_put() except that the length of the payload is
861 * @see nla_put
866 return nla_put(msg, attrtype, nl_data_get_size(data),
876 * @see nla_put
881 return nla_put(msg, attrtype, nl_addr_get_len(addr),
897 * @see nla_put
902 return nla_put(ms
[all...]

Completed in 279 milliseconds