Home
last modified time | relevance | path

Searched refs:NLMSG_ALIGNTO (Results 1 – 21 of 21) sorted by relevance

/external/iproute2/include/linux/
Dnetlink.h80 #define NLMSG_ALIGNTO 4U macro
81 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
145 #define NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
/external/kernel-headers/original/uapi/linux/
Dnetlink.h80 #define NLMSG_ALIGNTO 4U macro
81 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
145 #define NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
/external/libnl/include/linux/
Dnetlink.h75 #define NLMSG_ALIGNTO 4 macro
76 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
/external/wpa_supplicant_8/src/drivers/
Dpriv_netlink.h48 #define NLMSG_ALIGNTO 4 macro
49 #define NLMSG_ALIGN(len) (((len) + NLMSG_ALIGNTO - 1) & ~(NLMSG_ALIGNTO - 1))
Ddriver_nl80211.c8113 if (nlmsg_append(msg, (void *) data, data_len, NLMSG_ALIGNTO) < in nl80211_vendor_cmd()
/external/libnl/src/
Dnl-route-get.c68 nlmsg_append(m, &rmsg, sizeof(rmsg), NLMSG_ALIGNTO); in main()
/external/libnl/lib/netfilter/
Dnfnl.c178 nfg = nlmsg_reserve(msg, sizeof(*nfg), NLMSG_ALIGNTO); in nfnlmsg_append()
/external/libnl/lib/route/
Dclass.c178 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0) { in rtnl_class_build_delete_request()
Dqdisc.c332 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0) { in rtnl_qdisc_build_delete_request()
Dtc.c340 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0) in tca_build_msg()
Droute_obj.c1104 if (nlmsg_append(msg, &rtmsg, sizeof(rtmsg), NLMSG_ALIGNTO) < 0) in rtnl_route_build_msg()
1149 rtnh = nlmsg_reserve(msg, sizeof(*rtnh), NLMSG_ALIGNTO); in rtnl_route_build_msg()
Dneigh.c519 if (nlmsg_append(msg, &nhdr, sizeof(nhdr), NLMSG_ALIGNTO) < 0) in build_neigh_msg()
Drule.c419 if (nlmsg_append(msg, &rtm, sizeof(rtm), NLMSG_ALIGNTO) < 0) in build_rule_msg()
Dneightbl.c461 if (nlmsg_append(m, &ndt, sizeof(ndt), NLMSG_ALIGNTO) < 0) in rtnl_neightbl_build_change_request()
Daddr.c584 if (nlmsg_append(msg, &am, sizeof(am), NLMSG_ALIGNTO) < 0) in build_addr_msg()
Dlink.c880 if (nlmsg_append(msg, &ifi, sizeof(ifi), NLMSG_ALIGNTO) < 0) in rtnl_link_build_change_request()
/external/libnl/lib/fib_lookup/
Dlookup.c237 if (nlmsg_append(msg, &fr, sizeof(fr), NLMSG_ALIGNTO) < 0) in flnl_lookup_build_request()
/external/libnl/lib/
Dnl.c360 err = nlmsg_append(msg, buf, size, NLMSG_ALIGNTO); in nl_send_simple()
Dmsg.c629 nlmsg_reserve(n, payload, NLMSG_ALIGNTO) == NULL) in nlmsg_put()
/external/libnl/lib/route/sch/
Dnetem.c294 NLMSG_LENGTH(sizeof(struct tcmsg)) - NLMSG_ALIGNTO); in netem_build_msg()
/external/iproute2/lib/
Dlibnetlink.c113 struct rtattr ext_req __attribute__ ((aligned(NLMSG_ALIGNTO))); in rtnl_wilddump_req_filter()