/external/libnl/src/ |
nl-route-get.c | 68 nlmsg_append(m, &rmsg, sizeof(rmsg), NLMSG_ALIGNTO);
|
/external/libnl/include/netlink/ |
msg.h | 78 extern int nlmsg_append(struct nl_msg *, void *, size_t, int);
|
/external/libnl/lib/route/sch/ |
fifo.c | 119 if (nlmsg_append(msg, &opts, sizeof(opts), NL_DONTPAD) < 0)
|
red.c | 138 if (nlmsg_append(msg, &opts, sizeof(opts), NL_DONTPAD) < 0)
|
sfq.c | 127 if (nlmsg_append(msg, &opts, sizeof(opts), NL_DONTPAD) < 0)
|
prio.c | 142 if (nlmsg_append(msg, &opts, sizeof(opts), NL_DONTPAD) < 0) {
|
/external/libnl/lib/route/ |
class.c | 178 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0) {
|
qdisc.c | 332 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0) {
|
tc.c | 340 if (nlmsg_append(msg, &tchdr, sizeof(tchdr), NLMSG_ALIGNTO) < 0)
|
neigh.c | 519 if (nlmsg_append(msg, &nhdr, sizeof(nhdr), NLMSG_ALIGNTO) < 0)
|
neightbl.c | 461 if (nlmsg_append(m, &ndt, sizeof(ndt), NLMSG_ALIGNTO) < 0)
|
rule.c | 419 if (nlmsg_append(msg, &rtm, sizeof(rtm), NLMSG_ALIGNTO) < 0)
|
addr.c | 584 if (nlmsg_append(msg, &am, sizeof(am), NLMSG_ALIGNTO) < 0)
|
link.c | 880 if (nlmsg_append(msg, &ifi, sizeof(ifi), NLMSG_ALIGNTO) < 0) [all...] |
route_obj.c | 1104 if (nlmsg_append(msg, &rtmsg, sizeof(rtmsg), NLMSG_ALIGNTO) < 0)
|
/external/libnl/lib/fib_lookup/ |
lookup.c | 237 if (nlmsg_append(msg, &fr, sizeof(fr), NLMSG_ALIGNTO) < 0)
|
/external/libnl/lib/ |
nl.c | 360 err = nlmsg_append(msg, buf, size, NLMSG_ALIGNTO);
|
msg.c | 126 * // Payload may be added to the message via nlmsg_append(). The fourth 130 * nlmsg_append(msg, &mydata, sizeof(mydata), 0); 550 int nlmsg_append(struct nl_msg *n, void *data, size_t len, int pad) function
|