Lines Matching defs:ifconf
72 struct ifconf ifconf;
94 ifconf.ifc_len = (short)(int)buf_size;
96 ifconf.ifc_len = (int)buf_size;
98 ifconf.ifc_buf = buf;
103 if (ioctl(fd, siocgifconf, &ifconf) < 0 && errno != EINVAL) {
112 if (ifconf.ifc_len < (int)buf_size)
118 for (p = ifconf.ifc_buf; p < ifconf.ifc_buf + ifconf.ifc_len; p += sz) {