Home
last modified time | relevance | path

Searched refs:ifconf (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/netbsd-tests/net/if/
H A Dt_ifconf.sh43 local ifconf="$(atf_get_srcdir)/ifconf"
51 atf_check -s exit:0 -o match:'^2$' "$ifconf" total
52 atf_check -s exit:0 -o match:'lo0' "$ifconf" list
56 atf_check -s exit:0 -o match:'^3$' "$ifconf" total
57 atf_check -s exit:0 -o match:'shmif0' "$ifconf" list
61 atf_check -s exit:0 -o match:'^4$' "$ifconf" total
62 atf_check -s exit:0 -o match:'shmif1' "$ifconf" list
67 atf_check -s exit:0 -o match:'^5$' "$ifconf" total
70 atf_check -s exit:0 -o match:1 -x "$ifconf list 1 | wc -l"
79 atf_check -s exit:0 -o match:'^3$' "$ifconf" total
[all …]
H A Difconf.c54 struct ifconf ifc; in get_number_of_entries()
82 struct ifconf ifc; in show_interfaces()
/freebsd/libexec/bootpd/
H A Dgetif.c35 static struct ifconf ifconf; /* points to ifreq */ variable
54 if (ifconf.ifc_len == 0) { in getif()
66 ifconf.ifc_len = ioc.ic_len; in getif()
67 ifconf.ifc_req = ifreq; in getif()
69 ifconf.ifc_len = sizeof(ifreq); in getif()
70 ifconf.ifc_req = ifreq; in getif()
71 m = ioctl(s, SIOCGIFCONF, (caddr_t) & ifconf); in getif()
73 if ((m < 0) || (ifconf.ifc_len <= 0)) { in getif()
81 len = ifconf.ifc_len; in getif()
H A Dgetether.c125 struct ifconf ifc; in getether()
/freebsd/crypto/heimdal/lib/roken/
H A Dgetifaddrs.c878 struct ifconf ifconf; in getifaddrs2() local
899 ifconf.ifc_len = buf_size; in getifaddrs2()
900 ifconf.ifc_buf = buf; in getifaddrs2()
920 for (p = ifconf.ifc_buf; in getifaddrs2()
921 p < ifconf.ifc_buf + ifconf.ifc_len; in getifaddrs2()
1020 struct lifconf ifconf; in getlifaddrs2() local
1042 ifconf.lifc_family = af; in getlifaddrs2()
1043 ifconf.lifc_flags = 0; in getlifaddrs2()
1046 ifconf.lifc_buf = buf; in getlifaddrs2()
1066 for (p = ifconf.lifc_buf; in getlifaddrs2()
[all …]
/freebsd/contrib/ntp/include/
H A Dntif.h83 struct ifconf { struct
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_solaris.cpp259 CHECK_TYPE_SIZE(ifconf);
260 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
261 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
H A Dsanitizer_platform_limits_freebsd.cpp464 CHECK_TYPE_SIZE(ifconf);
465 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
466 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
H A Dsanitizer_platform_limits_posix.cpp1111 CHECK_TYPE_SIZE(ifconf);
1112 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
1113 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
H A Dsanitizer_platform_limits_netbsd.cpp825 unsigned struct_ifconf_sz = sizeof(ifconf);
2577 CHECK_TYPE_SIZE(ifconf);
2578 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
2579 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
/freebsd/usr.sbin/traceroute/
H A Difaddrlist.c70 struct ifconf ifc; in ifaddrlist()
/freebsd/sys/sys/
H A Dsockio.h63 #define SIOCGIFCONF _IOWR('i', 36, struct ifconf) /* get ifnet list */
/freebsd/contrib/libpcap/
H A Dfad-gifc.c141 struct ifconf ifc; in pcap_findalldevs_interfaces()
/freebsd/share/doc/psd/21.ipc/
H A Dspell.ok207 ifconf
/freebsd/libexec/rbootd/
H A Dbpf.c211 struct ifconf ifc; in BpfGetIntfName()
/freebsd/sys/net/
H A Dif.h557 struct ifconf { struct
H A Dif.c276 static int ifconf(u_long, caddr_t);
2922 struct ifconf ifc; in ifioctl()
3013 error = ifconf(cmd, data); in ifioctl()
3301 ifconf(u_long cmd, caddr_t data) in ifconf() function
3303 struct ifconf *ifc = (struct ifconf *)data; in ifconf()
/freebsd/contrib/ntp/libntp/lib/isc/unix/
H A Difiter_ioctl.c60 struct ifconf ifc;
/freebsd/sys/compat/linux/
H A Dlinux_ioctl.c2124 struct ifconf *ifc; in linux_ifconf_ifaddr_cb()
2179 linux_ifconf(struct thread *td, struct ifconf *uifc) in linux_ifconf()
2186 struct ifconf ifc; in linux_ifconf()
2438 error = linux_ifconf(td, (struct ifconf *)args->arg); in linux_ioctl_socket()
/freebsd/contrib/sendmail/src/
H A Dconf.c5082 struct ifconf ifc; in load_if_names()