/src/sys/arch/atari/stand/loadkmap/ |
loadkmap.c | 49 int ioc; local in function:load_kmap 51 ioc = set_sysmap ? ITEIOCSSKMAP : ITEIOCSKMAP; 55 if (ioctl(0, ioc, buf) == 0) {
|
/src/usr.sbin/bootp/common/ |
getif.c | 69 struct strioctl ioc; local in function:getif 70 ioc.ic_cmd = SIOCGIFCONF; 71 ioc.ic_timout = 0; 72 ioc.ic_len = sizeof(ifreq); 73 ioc.ic_dp = (char *) ifreq; 74 m = ioctl(s, I_STR, (char *) &ioc); 75 ifconf.ifc_len = ioc.ic_len;
|
/src/sbin/ifconfig/ |
lagg.c | 399 enum lagg_ioctl ioc; local in function:setlaggport 421 ioc = LAGGIOC_NOCMD; 425 ioc = LAGGIOC_ADDPORT; 427 ioc = LAGGIOC_DELPORT; 432 ioc = LAGGIOC_SETPORTPRI; 436 if (ioc != LAGGIOC_NOCMD) { 437 req->lrq_ioctl = ioc; 440 warn("cmd=%d", ioc);
|
/src/sys/dev/ic/ |
mfi.c | 1098 * Allocate DMA memory mapping for MPI2 IOC Init descriptor, 1106 "unable to allocate thunderbolt IOC init memory"); 3052 /* Get the physical address of the mpi2 ioc init command */ 3060 aprint_error_dev(sc->sc_dev, "failed to send IOC init2 " 3505 struct mfi_ioc_packet *ioc = data; local in function:mfifioctl 3513 sc = device_lookup_private(&mfi_cd, ioc->mfi_adapter_no); 3529 if (ioc->mfi_sge_count > MAX_IOCTL_SGE) 3536 memcpy(ccb->ccb_frame, ioc->mfi_frame.raw, 3542 (sizeof(union mfi_sgl) * ioc->mfi_sge_count) + 3543 ioc->mfi_sgl_off [all...] |