Searched refs:ifap (Results 26 - 32 of 32) sorted by relevance

12

/freebsd-current/sbin/route/
H A Droute.c1238 struct ifaddrs *ifap, *ifa; local
1242 if (getifaddrs(&ifap))
1245 for (ifa = ifap; ifa != NULL; ifa = ifa->ifa_next) {
1262 freeifaddrs(ifap);
/freebsd-current/usr.sbin/rtadvd/
H A Dconfig.c1082 struct ifaddrs *ifap, *ifa; local
1089 if (getifaddrs(&ifap) < 0) {
1097 for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
1161 freeifaddrs(ifap);
/freebsd-current/tools/tools/netmap/
H A Dpkt-gen.c680 struct ifaddrs *ifaphead, *ifap; local
691 for (ifap = ifaphead; ifap; ifap = ifap->ifa_next) {
693 (struct sockaddr_dl *)ifap->ifa_addr;
698 if (strncmp(ifap->ifa_name, ifname, IFNAMSIZ) != 0)
709 return ifap ? 0 : 1;
/freebsd-current/usr.sbin/bsnmpd/modules/snmp_wlan/
H A Dwlan_sys.c288 struct ifaddrs *ifap, *ifa; local
291 if (getifaddrs(&ifap) != 0) {
297 for (ifa = ifap; ifa != NULL; ifa = ifa->ifa_next) {
311 freeifaddrs(ifap);
/freebsd-current/sbin/pfctl/
H A Dpfctl_parser.c1439 struct ifaddrs *ifap, *ifa; local
1442 if (getifaddrs(&ifap) < 0)
1445 for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
1519 freeifaddrs(ifap);
/freebsd-current/usr.sbin/route6d/
H A Droute6d.c1511 struct ifaddrs *ifap, *ifa; local
1521 if (getifaddrs(&ifap) != 0) {
1526 for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
1580 freeifaddrs(ifap);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc5642 INTERCEPTOR(int, getifaddrs, __sanitizer_ifaddrs **ifap) {
5644 COMMON_INTERCEPTOR_ENTER(ctx, getifaddrs, ifap);
5648 int res = REAL(getifaddrs)(ifap);
5649 if (res == 0 && ifap) {
5650 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, ifap, sizeof(void *));
5651 __sanitizer_ifaddrs *p = *ifap;

Completed in 1829 milliseconds

12