• Home
  • Raw
  • Download

Lines Matching refs:family

226 		  const unsigned int family)  in decode_nlmsg_type()  argument
236 if (type >= NLMSG_MIN_TYPE && family < ARRAY_SIZE(nlmsg_types)) { in decode_nlmsg_type()
237 if (nlmsg_types[family].decoder) in decode_nlmsg_type()
238 decoder = nlmsg_types[family].decoder; in decode_nlmsg_type()
239 if (nlmsg_types[family].xlat) in decode_nlmsg_type()
240 xlat = nlmsg_types[family].xlat; in decode_nlmsg_type()
241 if (nlmsg_types[family].dflt) in decode_nlmsg_type()
242 dflt = nlmsg_types[family].dflt; in decode_nlmsg_type()
431 const unsigned int family) in decode_nlmsg_flags() argument
438 } else if (family < ARRAY_SIZE(nlmsg_flags) && nlmsg_flags[family]) in decode_nlmsg_flags()
439 table = nlmsg_flags[family](type); in decode_nlmsg_flags()
448 const int family, in print_nlmsghdr() argument
455 decode_nlmsg_type(tcp, nlmsghdr->nlmsg_type, family); in print_nlmsghdr()
459 nlmsghdr->nlmsg_type, family); in print_nlmsghdr()
498 const int family,
506 const int family, in decode_nlmsgerr() argument
539 decode_nlmsghdr_with_payload(tcp, fd, family, in decode_nlmsgerr()
571 const int family, in decode_payload() argument
577 decode_nlmsgerr(tcp, fd, family, addr, len, in decode_payload()
593 && (unsigned int) family < ARRAY_SIZE(netlink_decoders) in decode_payload()
594 && netlink_decoders[family] in decode_payload()
595 && netlink_decoders[family](tcp, nlmsghdr, addr, len)) { in decode_payload()
613 const int family, in decode_nlmsghdr_with_payload() argument
623 print_nlmsghdr(tcp, fd, family, nlmsghdr); in decode_nlmsghdr_with_payload()
627 decode_payload(tcp, fd, family, nlmsghdr, addr + NLMSG_HDRLEN, in decode_nlmsghdr_with_payload()
639 const int family = get_fd_nl_family(tcp, fd); in decode_netlink() local
641 if (family == NETLINK_KOBJECT_UEVENT) { in decode_netlink()
673 decode_nlmsghdr_with_payload(tcp, fd, family, in decode_netlink()