OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nla_put
(Results
1 - 5
of
5
) sorted by null
/external/android-clat/
setif.c
63
if(
nla_put
(msg, IFA_LOCAL, addr_size, address) < 0) {
69
if(
nla_put
(msg, IFA_ADDRESS, addr_size, address) < 0) {
75
if(
nla_put
(msg, IFA_BROADCAST, addr_size, broadcast) < 0) {
117
if(
nla_put
(msg, IFLA_MTU, 4, &mtu) < 0) {
setroute.c
102
if(
nla_put
(msg, RTA_DST, addr_size, destination) < 0) {
107
if(
nla_put
(msg, RTA_GATEWAY, addr_size, gateway) < 0) {
111
if(
nla_put
(msg, RTA_OIF, 4, &ifindex) < 0) {
115
if(
nla_put
(msg, RTA_PRIORITY, 4, &metric) < 0) {
127
if(
nla_put
(msg, RTAX_MTU, 4, &mtu) < 0) {
/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
168
return
nla_put
(msg, attrtype, sizeof(uint8_t), &value);
174
return
nla_put
(msg, attrtype, sizeof(uint16_t), &value);
180
return
nla_put
(msg, attrtype, sizeof(uint32_t), &value);
186
return
nla_put
(msg, attrtype, sizeof(uint64_t), &value);
197
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), \
/external/wpa_supplicant_8/src/drivers/
driver_nl80211.c
[
all
...]
Completed in 55 milliseconds