Lines Matching defs:ioc
365 struct strioctl ioc;
368 bzero((char *) &ioc, sizeof(ioc));
369 ioc.ic_cmd = cmd;
370 ioc.ic_timout = 0;
372 /* ioc.ic_len = ((struct ifconf *) arg)->ifc_len; */
375 ioc.ic_len = 1024;
376 ioc.ic_dp = ((struct ifconf *) arg)->ifc_buf;
378 ioc.ic_len = sizeof(struct ifreq); ioc.ic_dp = arg;
380 ret = ioctl(s, I_STR, (char *) &ioc);
382 ((struct ifconf *) arg)->ifc_len = ioc.ic_len;