Lines Matching refs:nlmsg_parse
1389 The function nlmsg_parse() validate a complete netlink message in one
1398 int nlmsg_parse(struct nlmsghdr *hdr, int hdrlen, struct nlattr **attrs,
1403 exactly the same as nlmsg_parse() except that it only validates and
1693 nlmsg_parse() family (See <<core_attr_parse_easy>>) an interface exists
1878 As an alernative to nla_parse() the function nlmsg_parse() can be used
1913 if (nlmsg_parse(nlh, 0, attrs, MY_ATTR_MAX, my_policy) < 0)
1953 nlmsg_parse() or nla_parse() function to fill an array.
2252 nlmsg_parse(), nla_validate(), or nla_parse() only the
2417 * The nlmsg_parse() function will make sure that the message contains
2422 if ((err = nlmsg_parse(hdr, sizeof(struct my_hdr), attrs, ATTR_MAX,
2429 * any further checks since nlmsg_parse() enforced the policy.