Lines Matching refs:fcio32
1439 struct fcio32 fcio32; in fcsm_ioctl() local
1441 if (status = ddi_copyin((void *)arg, (void *)&fcio32, in fcsm_ioctl()
1442 sizeof (struct fcio32), mode)) { in fcsm_ioctl()
1446 fcio.fcio_xfer = fcio32.fcio_xfer; in fcsm_ioctl()
1447 fcio.fcio_cmd = fcio32.fcio_cmd; in fcsm_ioctl()
1448 fcio.fcio_flags = fcio32.fcio_flags; in fcsm_ioctl()
1449 fcio.fcio_cmd_flags = fcio32.fcio_cmd_flags; in fcsm_ioctl()
1450 fcio.fcio_ilen = (size_t)fcio32.fcio_ilen; in fcsm_ioctl()
1451 fcio.fcio_ibuf = (caddr_t)(long)fcio32.fcio_ibuf; in fcsm_ioctl()
1452 fcio.fcio_olen = (size_t)fcio32.fcio_olen; in fcsm_ioctl()
1453 fcio.fcio_obuf = (caddr_t)(long)fcio32.fcio_obuf; in fcsm_ioctl()
1454 fcio.fcio_alen = (size_t)fcio32.fcio_alen; in fcsm_ioctl()
1455 fcio.fcio_abuf = (caddr_t)(long)fcio32.fcio_abuf; in fcsm_ioctl()
1456 fcio.fcio_errno = fcio32.fcio_errno; in fcsm_ioctl()
1689 struct fcio32 fcio32; in fcsm_fcio_copyout() local
1691 fcio32.fcio_xfer = fcio->fcio_xfer; in fcsm_fcio_copyout()
1692 fcio32.fcio_cmd = fcio->fcio_cmd; in fcsm_fcio_copyout()
1693 fcio32.fcio_flags = fcio->fcio_flags; in fcsm_fcio_copyout()
1694 fcio32.fcio_cmd_flags = fcio->fcio_cmd_flags; in fcsm_fcio_copyout()
1695 fcio32.fcio_ilen = fcio->fcio_ilen; in fcsm_fcio_copyout()
1696 fcio32.fcio_ibuf = (caddr32_t)(long)fcio->fcio_ibuf; in fcsm_fcio_copyout()
1697 fcio32.fcio_olen = fcio->fcio_olen; in fcsm_fcio_copyout()
1698 fcio32.fcio_obuf = (caddr32_t)(long)fcio->fcio_obuf; in fcsm_fcio_copyout()
1699 fcio32.fcio_alen = fcio->fcio_alen; in fcsm_fcio_copyout()
1700 fcio32.fcio_abuf = (caddr32_t)(long)fcio->fcio_abuf; in fcsm_fcio_copyout()
1701 fcio32.fcio_errno = fcio->fcio_errno; in fcsm_fcio_copyout()
1703 status = ddi_copyout((void *)&fcio32, (void *)arg, in fcsm_fcio_copyout()
1704 sizeof (struct fcio32), mode); in fcsm_fcio_copyout()