Symbol: ifconf
lib/npf/ext_log/npfext_log.c
79
struct ifconf ifc;
sys/compat/netbsd32/netbsd32_ioctl.c
1543
IOCTL_STRUCT_CONV_TO(OOSIOCGIFCONF, ifconf);
sys/compat/netbsd32/netbsd32_ioctl.c
1545
IOCTL_STRUCT_CONV_TO(OSIOCGIFCONF, ifconf);
sys/compat/netbsd32/netbsd32_ioctl.c
1547
IOCTL_STRUCT_CONV_TO(SIOCGIFCONF, ifconf);
sys/compat/netbsd32/netbsd32_ioctl.c
179
netbsd32_to_ifconf(struct netbsd32_ifconf *s32p, struct ifconf *p, u_long cmd)
sys/compat/netbsd32/netbsd32_ioctl.c
735
netbsd32_from_ifconf(struct ifconf *p,
sys/compat/sys/sockio.h
46
#define OOSIOCGIFCONF _IOWR('i', 20, struct ifconf) /* get ifnet list */
sys/compat/sys/sockio.h
49
#define OSIOCGIFCONF _IOWR('i', 36, struct ifconf) /* get ifnet list */
sys/compat/ultrix/ultrix_ioctl.c
720
case _IOWR('i', 20, struct ifconf): /* SIOCGIFCONF */
sys/compat/ultrix/ultrix_ioctl.c
722
struct ifconf ifconfarg;
sys/net/if.c
229
static int ifconf(u_long, void *);
sys/net/if.c
3426
return ifconf(cmd, data);
sys/net/if.c
3611
struct ifconf *ifc = (struct ifconf *)data;
sys/sys/sockio.h
66
#define SIOCGIFCONF _IOWR('i', 38, struct ifconf) /* get ifnet list */
tests/net/if/ifconf.c
54
struct ifconf ifc;
tests/net/if/ifconf.c
82
struct ifconf ifc;
usr.sbin/bootp/bootptest/getether.c
132
struct ifconf ifc;
usr.sbin/bootp/common/getif.c
42
static struct ifconf ifconf; /* points to ifreq */
usr.sbin/bootp/common/getif.c
63
if (ifconf.ifc_len == 0) {
usr.sbin/bootp/common/getif.c
75
ifconf.ifc_len = ioc.ic_len;
usr.sbin/bootp/common/getif.c
76
ifconf.ifc_req = ifreq;
usr.sbin/bootp/common/getif.c
78
ifconf.ifc_len = sizeof(ifreq);
usr.sbin/bootp/common/getif.c
79
ifconf.ifc_req = ifreq;
usr.sbin/bootp/common/getif.c
80
m = ioctl(s, SIOCGIFCONF, (caddr_t) & ifconf);
usr.sbin/bootp/common/getif.c
82
if ((m < 0) || (ifconf.ifc_len <= 0)) {
usr.sbin/bootp/common/getif.c
90
len = ifconf.ifc_len;
usr.sbin/sysinst/net.c
1129
FILE *ifconf = NULL;
usr.sbin/sysinst/net.c
1155
ifconf = target_fopen(ifconfig_fn, "w");
usr.sbin/sysinst/net.c
1156
if (ifconf != NULL) {
usr.sbin/sysinst/net.c
1159
scripting_fprintf(ifconf, "up\n");
usr.sbin/sysinst/net.c
1161
scripting_fprintf(ifconf, "media %s\n", net_media);
usr.sbin/sysinst/net.c
1169
if (ifconf != NULL) {
usr.sbin/sysinst/net.c
1173
scripting_fprintf(ifconf,
usr.sbin/sysinst/net.c
1177
scripting_fprintf(ifconf, "%s netmask %s\n",
usr.sbin/sysinst/net.c
1212
if (ifconf)
usr.sbin/sysinst/net.c
1213
fclose(ifconf);