OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nla_put
(Results
1 - 2
of
2
) sorted by null
/system/core/libnl_2/
attr.c
80
rc =
nla_put
(msg, attrtype, 0, NULL);
151
int
nla_put
(struct nl_msg *msg, int attrtype, int datalen, const void *data)
function
175
rc =
nla_put
(msg, attrtype, nlmsg_attrlen(nlmsg_hdr(nested), 0),
/external/libnl-headers/netlink/
attr.h
96
extern int
nla_put
(struct nl_msg *, int, int, const void *);
143
#define
NLA_PUT
(msg, attrtype, attrlen, data) \
145
if (
nla_put
(msg, attrtype, attrlen, data) < 0) \
160
NLA_PUT
(msg, attrtype, sizeof(type), &__tmp); \
206
NLA_PUT
(msg, attrtype, strlen(value) + 1, value)
214
NLA_PUT
(msg, attrtype, 0, NULL)
232
NLA_PUT
(msg, attrtype, nl_addr_get_len(addr), \
242
NLA_PUT
(msg, attrtype, nl_data_get_size(data), \
Completed in 362 milliseconds