HomeSort by relevance Sort by last modified time
    Searched refs:NLMSG_ALIGNTO (Results 1 - 25 of 37) sorted by null

1 2

  /external/libnl/include/netlink/
netlink-kernel.h 199 #define NLMSG_ALIGNTO 4
202 * Returns \p len properly aligned to NLMSG_ALIGNTO.
206 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
  /external/wpa_supplicant_8/src/drivers/
priv_netlink.h 48 #define NLMSG_ALIGNTO 4
49 #define NLMSG_ALIGN(len) (((len) + NLMSG_ALIGNTO - 1) & ~(NLMSG_ALIGNTO - 1))
  /external/libnl/include/linux-private/linux/
netlink.h 75 #define NLMSG_ALIGNTO 4U
76 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
  /bionic/libc/kernel/uapi/linux/
netlink.h 78 #define NLMSG_ALIGNTO 4U
79 #define NLMSG_ALIGN(len) (((len) + NLMSG_ALIGNTO - 1) & ~(NLMSG_ALIGNTO - 1))
140 #define NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
  /external/iproute2/include/uapi/linux/
netlink.h 89 #define NLMSG_ALIGNTO 4U
90 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
186 #define NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
  /external/kernel-headers/original/uapi/linux/
netlink.h 89 #define NLMSG_ALIGNTO 4U
90 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
190 #define NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
  /external/libnl/src/
nl-route-get.c 70 if (nlmsg_append(m, &rmsg, sizeof(rmsg), NLMSG_ALIGNTO) < 0)
  /external/libnl/lib/netfilter/
nfnl.c 178 nfg = nlmsg_reserve(msg, sizeof(*nfg), NLMSG_ALIGNTO);
  /external/libnl/lib/fib_lookup/
lookup.c 237 if (nlmsg_append(msg, &fr, sizeof(fr), NLMSG_ALIGNTO) < 0)
  /external/libnl/lib/route/
class.c 217 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0) {
qdisc.c 297 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0)
act.c 139 if (nlmsg_append(msg, &tcahdr, sizeof(tcahdr), NLMSG_ALIGNTO) < 0)
neigh.c 590 if (nlmsg_append(msg, &nhdr, sizeof(nhdr), NLMSG_ALIGNTO) < 0)
rule.c 383 if (nlmsg_append(msg, &frh, sizeof(frh), NLMSG_ALIGNTO) < 0)
route_obj.c 1210 if (nlmsg_append(msg, &rtmsg, sizeof(rtmsg), NLMSG_ALIGNTO) < 0)
1265 rtnh = nlmsg_reserve(msg, sizeof(*rtnh), NLMSG_ALIGNTO);
link.c 1136 if (nlmsg_append(msg, &ifi, sizeof(ifi), NLMSG_ALIGNTO) < 0)
    [all...]
addr.c 575 if (nlmsg_append(msg, &am, sizeof(am), NLMSG_ALIGNTO) < 0)
neightbl.c 473 if (nlmsg_append(m, &ndt, sizeof(ndt), NLMSG_ALIGNTO) < 0)
tc.c 210 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0)
  /external/libnl/lib/route/link/
veth.c 134 if (nlmsg_append(msg, &ifi, sizeof(ifi), NLMSG_ALIGNTO) < 0)
  /external/libnl/lib/
msg.c 83 * properly aligned to NLMSG_ALIGNTO.
524 nlmsg_reserve(n, payload, NLMSG_ALIGNTO) == NULL)
nl.c 560 err = nlmsg_append(msg, buf, size, NLMSG_ALIGNTO);
  /external/libnl/lib/route/qdisc/
netem.c 271 NLMSG_LENGTH(sizeof(struct tcmsg)) - NLMSG_ALIGNTO);
  /external/iproute2/lib/
libnetlink.c 214 struct rtattr ext_req __attribute__ ((aligned(NLMSG_ALIGNTO)));
  /external/syzkaller/vendor/golang.org/x/sys/unix/
zerrors_linux_sparc64.go     [all...]

Completed in 629 milliseconds

1 2