Searched refs:nlmsg_reserve (Results 1 – 7 of 7) sorted by relevance
/external/libnl/include/netlink/ |
D | msg.h | 78 extern void * nlmsg_reserve(struct nl_msg *, size_t, int);
|
/external/libnl/lib/netfilter/ |
D | nfnl.c | 178 nfg = nlmsg_reserve(msg, sizeof(*nfg), NLMSG_ALIGNTO); in nfnlmsg_append()
|
/external/libnl/lib/ |
D | msg.c | 407 void *nlmsg_reserve(struct nl_msg *n, size_t len, int pad) in nlmsg_reserve() function 449 tmp = nlmsg_reserve(n, len, pad); in nlmsg_append() 524 nlmsg_reserve(n, payload, NLMSG_ALIGNTO) == NULL) in nlmsg_put()
|
D | attr.c | 843 if (!nlmsg_reserve(msg, pad, 0)) in nla_nest_end()
|
/external/libnl/python/netlink/ |
D | capi.i | 221 extern void * nlmsg_reserve(struct nl_msg *, size_t, int);
|
/external/libnl/doc/ |
D | core.txt | 1528 equivalent to calling +nlmsg_reserve(msg, payload, NLMSG_ALIGNTO)+. 1580 void *nlmsg_reserve(struct nl_msg *msg, size_t len, int pad); 1583 The function nlmsg_reserve() reserves +len+ bytes at the end of the 1596 void *buf = nlmsg_reserve(msg, 17, 4); 1599 NOTE: `nlmsg_reserve()` will *not* align the start of the buffer. Any 1615 It is equivalent to calling `nlmsg_reserve()` and `memcpy()`ing the
|
/external/libnl/lib/route/ |
D | route_obj.c | 1265 rtnh = nlmsg_reserve(msg, sizeof(*rtnh), NLMSG_ALIGNTO); in rtnl_route_build_msg()
|