Home
last modified time | relevance | path

Searched refs:nlmsg_reserve (Results 1 – 9 of 9) sorted by relevance

/third_party/libnl/include/netlink/
Dmsg.h80 extern void * nlmsg_reserve(struct nl_msg *, size_t, int);
/third_party/libnl/lib/netfilter/
Dnfnl.c182 nfg = nlmsg_reserve(msg, sizeof(*nfg), NLMSG_ALIGNTO); in nfnlmsg_append()
/third_party/libnl/lib/
Dmsg.c411 void *nlmsg_reserve(struct nl_msg *n, size_t len, int pad) in nlmsg_reserve() function
453 tmp = nlmsg_reserve(n, len, pad); in nlmsg_append()
528 nlmsg_reserve(n, payload, NLMSG_ALIGNTO) == NULL) in nlmsg_put()
Dattr.c944 if (!nlmsg_reserve(msg, pad, 0)) in _nest_end()
/third_party/libnl/
Dlibnl-3.sym312 nlmsg_reserve;
/third_party/libnl/python/netlink/
Dcapi.i226 extern void * nlmsg_reserve(struct nl_msg *, size_t, int);
/third_party/libnl/doc/
Dcore.txt1528 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
/third_party/libnl/lib/route/
Droute_obj.c1449 rtnh = nlmsg_reserve(msg, sizeof(*rtnh), NLMSG_ALIGNTO); in rtnl_route_build_msg()
/third_party/libnl/lib/xfrm/
Dsp.c853 tmpl = nlmsg_reserve(msg, sizeof(*tmpl), NLMSG_ALIGNTO); in build_xfrm_sp_message()