/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/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/btattach/ |
btattach.c | 411 uart_getc(int fd, struct iovec *iov, int ioc, size_t *count) 428 while (ioc > 0) { 438 ioc--; 448 uart_recv_pkt(int fd, struct iovec *iov, int ioc) 457 type = uart_getc(fd, iov, ioc, &count); 460 (void)uart_getc(fd, iov, ioc, &count); /* event */ 461 want = uart_getc(fd, iov, ioc, &count); 465 (void)uart_getc(fd, iov, ioc, &count); /* handle LSB */ 466 (void)uart_getc(fd, iov, ioc, &count); /* handle MSB */ 467 want = uart_getc(fd, iov, ioc, &count) | /* LSB * [all...] |
/src/sys/dev/ |
efi.c | 238 efi_ioctl_got_table(struct efi_get_table_ioc *ioc, void *ptr, size_t len) 244 ioc->table_len = len; 249 return copyout(ptr, ioc->buf, MIN(ioc->buf_len, len)); 253 efi_ioctl_get_esrt(struct efi_get_table_ioc *ioc, 282 return efi_ioctl_got_table(ioc, tab, len); 286 efi_ioctl_get_table(struct efi_get_table_ioc *ioc) 303 status = efi_ops->efi_gettab(&ioc->uuid, &addr); 319 if (memcmp(&ioc->uuid, &(struct uuid)EFI_SYSTEM_RESOURCE_TABLE_GUID, 320 sizeof(ioc->uuid)) == 0) [all...] |
/src/sys/arch/sgimips/ioc/ |
ioc.c | 1 /* $NetBSD: ioc.c,v 1.14 2023/12/20 15:29:07 thorpej Exp $ */ 36 * ip20/22/24 I/O Controller (IOC) 40 __KERNEL_RCSID(0, "$NetBSD: ioc.c,v 1.14 2023/12/20 15:29:07 thorpej Exp $"); 60 #include <sgimips/ioc/iocreg.h> 61 #include <sgimips/ioc/iocvar.h> 77 CFATTACH_DECL_NEW(ioc, sizeof(struct ioc_softc), 124 /* Reset IOC */ 153 * pckbc, zstty, and lpt should attach under the IOC. This begs the 154 * question of how we sort things out with ip20, which has no IOC. 156 * the IOC [all...] |
oioc.c | 35 * So, we'll call ourselves 'Old IOC' and hope that there wasn't an even older 52 #include <sgimips/ioc/oiocreg.h> 53 #include <sgimips/ioc/oiocvar.h> 112 printf("\noioc0: Old SGI IOC%d\n", oiocrev);
|
if_le_oioc.c | 61 #include <sgimips/ioc/oiocvar.h> 62 #include <sgimips/ioc/oiocreg.h> 99 bus_space_handle_t sc_maph; /* ioc<->lance page map regs */ 194 aprint_error(": failed to allocate ioc<->lance buffer space, " 199 /* Use IOC to map the physical memory into the Ethernet chip's space. */
|
oiocsc.c | 59 #include <sgimips/ioc/oiocreg.h> 60 #include <sgimips/ioc/oiocvar.h>
|
/src/sys/arch/sgimips/ |
Makefile | 15 ${SYSDIR}/arch/sgimips/ioc/*.[ch] \
|
/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/arch/sgimips/hpc/ |
button.c | 47 #include <sgimips/ioc/iocreg.h>
|
hpc.c | 56 #include <sgimips/ioc/iocreg.h>
|
pi1ppc.c | 58 #include <sgimips/ioc/iocreg.h> 114 /* no-ops, do any IOC machines have ECP/EPP-capable ports? */ 735 /* if we are writing the ctl reg, adjust PC style -> IOC style */
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/broadcom/bcm4908/ |
bcm4906-netgear-r8000p.dts | 83 brcm,ioc = <1>;
|
bcm4908-asus-gt-ac5300.dts | 53 brcm,ioc = <1>;
|
/src/sys/arch/sgimips/sgimips/ |
console.c | 53 #include <sgimips/ioc/iocreg.h>
|
/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...] |