Symbol: NLMSG_ALIGN
crypto/heimdal/lib/roken/getifaddrs.c
277
char reqbuf[NLMSG_ALIGN(sizeof(struct nlmsghdr)) +
crypto/heimdal/lib/roken/getifaddrs.c
278
NLMSG_ALIGN(sizeof(struct rtgenmsg))];
crypto/heimdal/lib/roken/getifaddrs.c
558
NLMSG_ALIGN(sizeof(struct ifaddrs[icnt]))
crypto/heimdal/lib/roken/getifaddrs.c
562
NLMSG_ALIGN(sizeof(char *[max_ifindex+1]))
crypto/heimdal/lib/roken/getifaddrs.c
563
+ NLMSG_ALIGN(sizeof(uint16_t [max_ifindex+1])));
crypto/heimdal/lib/roken/getifaddrs.c
577
data += NLMSG_ALIGN(sizeof(struct ifaddrs)) * icnt;
crypto/heimdal/lib/roken/getifaddrs.c
581
ifflist = (uint16_t *)(((char *)iflist) + NLMSG_ALIGN(sizeof(char *[max_ifindex+1])));
crypto/heimdal/lib/roken/getifaddrs.c
644
rtasize = NLMSG_PAYLOAD(nlh, nlmlen) - NLMSG_ALIGN(nlm_struct_size);
crypto/heimdal/lib/roken/getifaddrs.c
645
for (rta = (struct rtattr *)(((char *)NLMSG_DATA(nlh)) + NLMSG_ALIGN(nlm_struct_size));
crypto/heimdal/lib/roken/getifaddrs.c
664
sockaddr_size = NLMSG_ALIGN(sa_len);
crypto/heimdal/lib/roken/getifaddrs.c
666
dlen += NLMSG_ALIGN(sa_len);
crypto/heimdal/lib/roken/getifaddrs.c
672
data += NLMSG_ALIGN(sa_len);
crypto/heimdal/lib/roken/getifaddrs.c
677
nlen += NLMSG_ALIGN(rtapayload + 1);
crypto/heimdal/lib/roken/getifaddrs.c
684
ifname += NLMSG_ALIGN(rtapayload + 1);
crypto/heimdal/lib/roken/getifaddrs.c
689
xlen += NLMSG_ALIGN(rtapayload);
crypto/heimdal/lib/roken/getifaddrs.c
693
xdata += NLMSG_ALIGN(rtapayload);
crypto/heimdal/lib/roken/getifaddrs.c
731
nlen += NLMSG_ALIGN(rtapayload + 1);
crypto/heimdal/lib/roken/getifaddrs.c
738
ifname += NLMSG_ALIGN(rtapayload + 1);
crypto/heimdal/lib/roken/getifaddrs.c
771
sockaddr_size = NLMSG_ALIGN(ifa_sa_len(nlm_family,ifamap.address_len));
crypto/heimdal/lib/roken/getifaddrs.c
774
dlen += NLMSG_ALIGN(ifa_sa_len(nlm_family,ifamap.address_len));
crypto/heimdal/lib/roken/getifaddrs.c
779
data += NLMSG_ALIGN(ifa_sa_len(nlm_family, ifamap.address_len));
crypto/heimdal/lib/roken/getifaddrs.c
785
dlen += NLMSG_ALIGN(ifa_sa_len(nlm_family,ifamap.netmask_len));
crypto/heimdal/lib/roken/getifaddrs.c
790
data += NLMSG_ALIGN(ifa_sa_len(nlm_family, ifamap.netmask_len));
crypto/heimdal/lib/roken/getifaddrs.c
796
dlen += NLMSG_ALIGN(ifa_sa_len(nlm_family,ifamap.broadcast_len));
crypto/heimdal/lib/roken/getifaddrs.c
801
data += NLMSG_ALIGN(ifa_sa_len(nlm_family, ifamap.broadcast_len));
crypto/heimdal/lib/roken/getifaddrs.c
807
dlen += NLMSG_ALIGN(ifa_sa_len(nlm_family,ifamap.anycast_len));
crypto/heimdal/lib/roken/getifaddrs.c
812
data += NLMSG_ALIGN(ifa_sa_len(nlm_family, ifamap.anycast_len));
lib/libsysdecode/netlink.c
82
size_t aligned_len = NLMSG_ALIGN(nl->nlmsg_len);
sys/compat/linux/linux_netlink.c
205
out_hdr = nlmsg_reserve_data(nw, NLMSG_ALIGN(hdr->nlmsg_len), char);
sys/compat/linux/linux_netlink.c
226
memcpy(next_hdr, hdr + 1, NLMSG_ALIGN(sz));
sys/compat/linux/linux_netlink.c
529
dst_payload = nlmsg_reserve_data(nw, NLMSG_ALIGN(copy_len), char);
sys/compat/linux/linux_netlink.c
582
msglen = NLMSG_ALIGN(hdr->nlmsg_len);
sys/netlink/netlink.h
216
#define NLMSG_SPACE(_len) NLMSG_ALIGN(NLMSG_LENGTH(_len))
sys/netlink/netlink.h
219
#define _NLMSG_ALIGNED_LEN(_hdr) NLMSG_ALIGN(_NLMSG_LEN(_hdr))
sys/netlink/netlink.h
225
#define NLMSG_HDRLEN (NLMSG_ALIGN(sizeof(struct nlmsghdr)))
sys/netlink/netlink_io.c
350
int msglen = NLMSG_ALIGN(hdr->nlmsg_len);
sys/netlink/netlink_snl.h
311
ssize_t sz = NLMSG_ALIGN(hdr->nlmsg_len);
sys/netlink/netlink_snl.h
366
ss->off += NLMSG_ALIGN(hdr->nlmsg_len);
sys/netlink/netlink_snl.h
398
ss->off += NLMSG_ALIGN(hdr->nlmsg_len);
sys/netlink/netlink_snl.h
983
int hdrlen = sizeof(int) + NLMSG_ALIGN(errmsg->msg.nlmsg_len);