HomeSort by: relevance | last modified time | path
    Searched defs:ifconf (Results 1 - 21 of 21) sorted by relevancy

  /src/tests/net/if/
Makefile 9 .for name in ifconf ifconfig
14 PROGS= ifconf
15 MAN.ifconf= # empty
16 BINDIR.ifconf= ${TESTSDIR}
  /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/external/bsd/ntp/dist/include/
ntif.h 85 struct ifconf { struct
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_openbsd.cc 195 CHECK_TYPE_SIZE(ifconf); variable
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); variable
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); variable
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); variable
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); variable
2415 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
2416 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
  /src/usr.sbin/sysinst/
net.c 1118 FILE *ifconf = NULL; local
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/crypto/external/bsd/heimdal/dist/lib/roken/
getifaddrs.c 880 struct ifconf ifconf; local
901 ifconf.ifc_len = buf_size;
902 ifconf.ifc_buf = buf;
907 if (ioctl (fd, siocgifconf, &ifconf) < 0 && errno != EINVAL) {
916 if (ifconf.ifc_len < buf_size)
922 for (p = ifconf.ifc_buf;
923 p < ifconf.ifc_buf + ifconf.ifc_len;
1022 struct lifconf ifconf; local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_platform_limits_solaris.cpp 259 CHECK_TYPE_SIZE(ifconf); variable
260 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
261 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
sanitizer_platform_limits_freebsd.cpp 464 CHECK_TYPE_SIZE(ifconf); variable
465 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
466 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
sanitizer_platform_limits_posix.cpp 1111 CHECK_TYPE_SIZE(ifconf); variable
1112 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
1113 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
sanitizer_platform_limits_netbsd.cpp 825 unsigned struct_ifconf_sz = sizeof(ifconf);
2577 CHECK_TYPE_SIZE(ifconf); variable
2578 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
2579 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_platform_limits_solaris.cpp 259 CHECK_TYPE_SIZE(ifconf); variable
260 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
261 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
sanitizer_platform_limits_freebsd.cpp 452 CHECK_TYPE_SIZE(ifconf); variable
453 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
454 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
sanitizer_platform_limits_posix.cpp 1061 CHECK_TYPE_SIZE(ifconf); variable
1062 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
1063 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
sanitizer_platform_limits_netbsd.cpp 825 unsigned struct_ifconf_sz = sizeof(ifconf);
2577 CHECK_TYPE_SIZE(ifconf); variable
2578 CHECK_SIZE_AND_OFFSET(ifconf, ifc_len);
2579 CHECK_SIZE_AND_OFFSET(ifconf, ifc_ifcu);
  /src/external/mpl/dhcp/dist/keama/
confparse.c 148 struct element *ifconf; local
150 ifconf = mapGet(cfile->stack[1], "interfaces-config");
151 if (ifconf == NULL) {
4402 struct element *ifconf; local
4407 ifconf = mapGet(cfile->stack[1], "interfaces-config");
4408 if (ifconf == NULL) {
4409 ifconf = createMap();
4410 mapSet(cfile->stack[1], ifconf, "interfaces-config");
4413 iflist = mapGet(ifconf, "interfaces");
4416 mapSet(ifconf, iflist, "interfaces")
    [all...]
  /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
3654 struct ifconf *ifc = (struct ifconf *)data;
if.h 942 struct ifconf { struct

Completed in 77 milliseconds