OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NLMSG_HDRLEN
(Results
51 - 55
of
55
) sorted by null
1
2
3
/external/iproute2/include/linux/
netlink.h
80
#define
NLMSG_HDRLEN
((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
81
#define NLMSG_LENGTH(len) ((len)+NLMSG_ALIGN(
NLMSG_HDRLEN
))
/external/wpa_supplicant_8/src/drivers/
priv_netlink.h
50
#define
NLMSG_HDRLEN
((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
/external/kernel-headers/original/linux/
netlink.h
77
#define
NLMSG_HDRLEN
((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
78
#define NLMSG_LENGTH(len) ((len)+NLMSG_ALIGN(
NLMSG_HDRLEN
))
216
#define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE -
NLMSG_HDRLEN
)
/system/core/libnl_2/genl/
genl.c
44
nlh = (struct nlmsghdr *) ((char *) gnlh -
NLMSG_HDRLEN
);
58
new_size =
NLMSG_HDRLEN
+ GENL_HDRLEN + hdrlen;
76
gmh = (struct genlmsghdr *) ((char *)nlh +
NLMSG_HDRLEN
);
/external/chromium_org/net/base/
address_tracker_linux_unittest.cc
58
explicit NetlinkMessage(uint16 type) : buffer_(
NLMSG_HDRLEN
) {
64
CHECK_EQ(static_cast<size_t>(
NLMSG_HDRLEN
),
Completed in 1151 milliseconds
1
2
3