Searched refs:nla_next (Results 1 – 4 of 4) sorted by relevance
/external/libnl/include/netlink/ |
D | attr.h | 81 extern struct nlattr * nla_next(const struct nlattr *, int *); 265 pos = nla_next(pos, &(rem))) 277 pos = nla_next(pos, &(rem)))
|
/external/libnl/lib/ |
D | attr.c | 171 struct nlattr *nla_next(const struct nlattr *nla, int *remaining) in nla_next() function
|
/external/dhcpcd-6.8.2/ |
D | if-linux.c | 920 nla_next(struct nlattr *nla, size_t *rem) in nla_next() function 935 for (pos = head, rem = len; NLA_OK(pos, rem); pos = nla_next(pos, &(rem)))
|
/external/libnl/doc/ |
D | core.txt | 1699 header. Any subsequent attribute is accessed with the function nla_next() 1706 struct nlattr *nla_next(const struct nlattr *attr, int *remaining); 1709 The semantics are equivalent to nlmsg_next() and thus nla_next() will also 1725 A typical use of nla_ok() and nla_next() looks like this: 1727 .nla_ok()/nla_next() usage 1738 hdr = nla_next(hdr, &remaining);
|