| /src/tests/net/if/ | 
| t_ifconf.sh | 37 	atf_set "descr" "basic ifconf (SIOCGIFCONF) test" 43 	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" tota
 [all...]
 | 
| Makefile | 9 .for name in ifconf ifconfig 14 PROGS=		ifconf
 15 MAN.ifconf=	# empty
 16 BINDIR.ifconf=	${TESTSDIR}
 
 | 
| ifconf.c | 1 /*	$NetBSD: ifconf.c,v 1.1 2014/12/08 04:23:03 ozaki-r Exp $	*/ 28 __RCSID("$NetBSD: ifconf.c,v 1.1 2014/12/08 04:23:03 ozaki-r Exp $");
 54 	struct ifconf ifc;
 82 	struct ifconf ifc;
 
 | 
| /src/usr.sbin/bootp/common/ | 
| getif.c | 42 static struct ifconf ifconf;	/* points to ifreq */  variable in typeref:struct:ifconf 63 	if (ifconf.ifc_len == 0) {
 75 		ifconf.ifc_len = ioc.ic_len;
 76 		ifconf.ifc_req = ifreq;
 78 		ifconf.ifc_len = sizeof(ifreq);
 79 		ifconf.ifc_req = ifreq;
 80 		m = ioctl(s, SIOCGIFCONF, (caddr_t) & ifconf);
 82 		if ((m < 0) || (ifconf.ifc_len <= 0)) {
 90 	len = ifconf.ifc_len
 [all...]
 | 
| /src/sys/compat/sys/ | 
| sockio.h | 46 #define	OOSIOCGIFCONF	 _IOWR('i', 20, struct ifconf)	/* get ifnet list */ 49 #define	OSIOCGIFCONF	 _IOWR('i', 36, struct ifconf)	/* get ifnet list */
 
 | 
| /src/lib/npf/ext_log/ | 
| npfext_log.c | 79 		struct ifconf ifc; 
 | 
| /src/usr.sbin/sysinst/ | 
| net.c | 1118 	FILE *ifconf = NULL;  local in function:mnt_net_config 1144 	ifconf = target_fopen(ifconfig_fn, "w");
 1145 	if (ifconf != NULL) {
 1148 		scripting_fprintf(ifconf, "up\n");
 1150 			scripting_fprintf(ifconf, "media %s\n", net_media);
 1158 		if (ifconf != NULL) {
 1162 				scripting_fprintf(ifconf,
 1166 				scripting_fprintf(ifconf, "%s netmask %s\n",
 1201 	if (ifconf)
 1202 		fclose(ifconf);
 [all...]
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ | 
| sanitizer_platform_limits_openbsd.cc | 195 CHECK_TYPE_SIZE(ifconf); 196 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
 197 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
 
 | 
| sanitizer_platform_limits_solaris.cc | 257 CHECK_TYPE_SIZE(ifconf); 258 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
 259 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
 
 | 
| sanitizer_platform_limits_freebsd.cc | 419 CHECK_TYPE_SIZE(ifconf); 420 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
 421 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
 
 | 
| sanitizer_platform_limits_posix.cc | 1039 CHECK_TYPE_SIZE(ifconf); 1040 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
 1041 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
 
 | 
| sanitizer_platform_limits_netbsd.cc | 663 unsigned struct_ifconf_sz = sizeof(ifconf); 2414 CHECK_TYPE_SIZE(ifconf);
 2415 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
 2416 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
 
 | 
| /src/sys/sys/ | 
| sockio.h | 66 #define	SIOCGIFCONF	_IOWR('i', 38, struct ifconf)	/* get ifnet list */ 
 | 
| /src/usr.sbin/bootp/bootptest/ | 
| getether.c | 134 	struct ifconf ifc; 
 | 
| /src/sys/compat/netbsd32/ | 
| netbsd32_ioctl.c | 179 netbsd32_to_ifconf(struct netbsd32_ifconf *s32p, struct ifconf *p, u_long cmd) 735 netbsd32_from_ifconf(struct ifconf *p,
 1543 		IOCTL_STRUCT_CONV_TO(OOSIOCGIFCONF, ifconf);
 1545 		IOCTL_STRUCT_CONV_TO(OSIOCGIFCONF, ifconf);
 1547 		IOCTL_STRUCT_CONV_TO(SIOCGIFCONF, ifconf);
 
 | 
| /src/sys/compat/ultrix/ | 
| ultrix_ioctl.c | 720 	case _IOWR('i', 20, struct ifconf):	/* SIOCGIFCONF */ 722 		struct ifconf ifconfarg;
 
 | 
| /src/sys/net/ | 
| if.c | 229 static int ifconf(u_long, void *); 3469 		return ifconf(cmd, data);
 3652 ifconf(u_long cmd, void *data)  function in typeref:typename:int
 3654 	struct ifconf *ifc = (struct ifconf *)data;
 
 | 
| if.h | 942 struct	ifconf {  struct 
 |