Searched refs:nlmsg_attrdata (Results 1 – 6 of 6) sorted by relevance
/third_party/libnl/include/netlink/ |
D | msg.h | 61 extern struct nlattr * nlmsg_attrdata(const struct nlmsghdr *, int); 126 nla_for_each_attr(pos, nlmsg_attrdata(nlh, hdrlen), \
|
/third_party/libnl/lib/ |
D | msg.c | 145 struct nlattr *nlmsg_attrdata(const struct nlmsghdr *nlh, int hdrlen) in nlmsg_attrdata() function 221 return nla_parse(tb, maxtype, nlmsg_attrdata(nlh, hdrlen), in nlmsg_parse() 235 return nla_find(nlmsg_attrdata(nlh, hdrlen), in nlmsg_find_attr() 252 return nla_validate(nlmsg_attrdata(nlh, hdrlen), in nlmsg_validate() 962 attrs = nlmsg_attrdata(hdr, ops->co_hdrsize); in print_msg()
|
/third_party/libnl/ |
D | libnl-3.sym | 291 nlmsg_attrdata;
|
/third_party/libnl/python/netlink/ |
D | core.py | 154 return capi.nlmsg_attrdata(self._msg)
|
D | capi.i | 207 extern struct nlattr * nlmsg_attrdata(const struct nlmsghdr *, int);
|
/third_party/libnl/doc/ |
D | core.txt | 1370 nlmsg_attrdata(nlh, hdrlen) -----------------------------^ 1373 The function nlmsg_attrdata() returns a pointer to the begin of the 1381 struct nlattr *nlmsg_attrdata(const struct nlmsghdr *hdr, int hdrlen); 1661 The format of the attributes data returned by nlmsg_attrdata() is as 1698 nlmsg_attrdata() (See <<core_msg_attr>>) points to the first attribute 1733 struct nlattr *hdr = nlmsg_attrdata(msg, 0);
|