/external/libnl/include/netlink/ |
D | netlink-kernel.h | 199 #define NLMSG_ALIGNTO 4 206 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
|
/external/kernel-headers/original/uapi/linux/ |
D | netlink.h | 89 #define NLMSG_ALIGNTO 4U macro 90 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) ) 190 #define NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
|
/external/iproute2/include/uapi/linux/ |
D | netlink.h | 89 #define NLMSG_ALIGNTO 4U macro 90 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) ) 186 #define NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
|
/external/libnl/include/linux-private/linux/ |
D | netlink.h | 75 #define NLMSG_ALIGNTO 4U macro 76 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
|
/external/wpa_supplicant_8/src/drivers/ |
D | priv_netlink.h | 48 #define NLMSG_ALIGNTO 4 macro 49 #define NLMSG_ALIGN(len) (((len) + NLMSG_ALIGNTO - 1) & ~(NLMSG_ALIGNTO - 1))
|
/external/libnl/src/ |
D | nl-route-get.c | 70 if (nlmsg_append(m, &rmsg, sizeof(rmsg), NLMSG_ALIGNTO) < 0) in main()
|
/external/libnl/lib/netfilter/ |
D | nfnl.c | 178 nfg = nlmsg_reserve(msg, sizeof(*nfg), NLMSG_ALIGNTO); in nfnlmsg_append()
|
/external/libnl/lib/route/link/ |
D | veth.c | 134 if (nlmsg_append(msg, &ifi, sizeof(ifi), NLMSG_ALIGNTO) < 0) in veth_put_attrs()
|
/external/libnl/lib/fib_lookup/ |
D | lookup.c | 237 if (nlmsg_append(msg, &fr, sizeof(fr), NLMSG_ALIGNTO) < 0) in flnl_lookup_build_request()
|
/external/libnl/lib/route/ |
D | class.c | 217 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0) { in rtnl_class_build_delete_request()
|
D | qdisc.c | 297 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0) in rtnl_qdisc_build_delete_request()
|
D | act.c | 139 if (nlmsg_append(msg, &tcahdr, sizeof(tcahdr), NLMSG_ALIGNTO) < 0) in rtnl_act_msg_build()
|
D | route_obj.c | 1210 if (nlmsg_append(msg, &rtmsg, sizeof(rtmsg), NLMSG_ALIGNTO) < 0) in rtnl_route_build_msg() 1265 rtnh = nlmsg_reserve(msg, sizeof(*rtnh), NLMSG_ALIGNTO); in rtnl_route_build_msg()
|
D | link.c | 1136 if (nlmsg_append(msg, &ifi, sizeof(ifi), NLMSG_ALIGNTO) < 0) in rtnl_link_build_get_request() 1313 if (nlmsg_append(msg, hdr, sizeof(*hdr), NLMSG_ALIGNTO) < 0) in build_link_msg() 1566 if (nlmsg_append(msg, &ifi, sizeof(ifi), NLMSG_ALIGNTO) < 0) in rtnl_link_build_delete_request()
|
D | rule.c | 383 if (nlmsg_append(msg, &frh, sizeof(frh), NLMSG_ALIGNTO) < 0) in build_rule_msg()
|
D | neightbl.c | 473 if (nlmsg_append(m, &ndt, sizeof(ndt), NLMSG_ALIGNTO) < 0) in rtnl_neightbl_build_change_request()
|
D | neigh.c | 590 if (nlmsg_append(msg, &nhdr, sizeof(nhdr), NLMSG_ALIGNTO) < 0) in build_neigh_msg()
|
D | tc.c | 210 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0) in rtnl_tc_msg_build()
|
D | addr.c | 575 if (nlmsg_append(msg, &am, sizeof(am), NLMSG_ALIGNTO) < 0) in build_addr_msg()
|
/external/libnl/lib/route/qdisc/ |
D | netem.c | 271 NLMSG_LENGTH(sizeof(struct tcmsg)) - NLMSG_ALIGNTO); in netem_msg_fill_raw()
|
/external/libnl/lib/ |
D | nl.c | 560 err = nlmsg_append(msg, buf, size, NLMSG_ALIGNTO); in nl_send_simple()
|
D | msg.c | 524 nlmsg_reserve(n, payload, NLMSG_ALIGNTO) == NULL) in nlmsg_put()
|
/external/iproute2/lib/ |
D | libnetlink.c | 214 struct rtattr ext_req __attribute__ ((aligned(NLMSG_ALIGNTO))); in rtnl_wilddump_req_filter()
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
D | zerrors_linux_sparc64.go | 882 NLMSG_ALIGNTO = 0x4 const
|
/external/libnl/doc/ |
D | core.txt | 1203 boundries. The alignment value is defined by NLMSG_ALIGNTO and is 1206 must start at an offset which is a multiple of NLMSG_ALIGNTO. 1325 to start at a multiple of +NLMSG_ALIGNTO+. Padding at the end of the 1528 equivalent to calling +nlmsg_reserve(msg, payload, NLMSG_ALIGNTO)+. 2360 if (nlmsg_append(msg, &ifi, sizeof(ifi), NLMSG_ALIGNTO) < 0)
|