Symbol: fcio32
usr/src/uts/common/io/fibre-channel/impl/fp.c
804
struct fcio32 fcio32;
usr/src/uts/common/io/fibre-channel/impl/fp.c
806
if (ddi_copyin((void *)data, (void *)&fcio32,
usr/src/uts/common/io/fibre-channel/impl/fp.c
807
sizeof (struct fcio32), mode)) {
usr/src/uts/common/io/fibre-channel/impl/fp.c
811
fcio.fcio_xfer = fcio32.fcio_xfer;
usr/src/uts/common/io/fibre-channel/impl/fp.c
812
fcio.fcio_cmd = fcio32.fcio_cmd;
usr/src/uts/common/io/fibre-channel/impl/fp.c
813
fcio.fcio_flags = fcio32.fcio_flags;
usr/src/uts/common/io/fibre-channel/impl/fp.c
814
fcio.fcio_cmd_flags = fcio32.fcio_cmd_flags;
usr/src/uts/common/io/fibre-channel/impl/fp.c
815
fcio.fcio_ilen = (size_t)fcio32.fcio_ilen;
usr/src/uts/common/io/fibre-channel/impl/fp.c
817
(caddr_t)(uintptr_t)fcio32.fcio_ibuf;
usr/src/uts/common/io/fibre-channel/impl/fp.c
818
fcio.fcio_olen = (size_t)fcio32.fcio_olen;
usr/src/uts/common/io/fibre-channel/impl/fp.c
820
(caddr_t)(uintptr_t)fcio32.fcio_obuf;
usr/src/uts/common/io/fibre-channel/impl/fp.c
821
fcio.fcio_alen = (size_t)fcio32.fcio_alen;
usr/src/uts/common/io/fibre-channel/impl/fp.c
823
(caddr_t)(uintptr_t)fcio32.fcio_abuf;
usr/src/uts/common/io/fibre-channel/impl/fp.c
824
fcio.fcio_errno = fcio32.fcio_errno;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9976
struct fcio32 fcio32;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9978
fcio32.fcio_xfer = fcio->fcio_xfer;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9979
fcio32.fcio_cmd = fcio->fcio_cmd;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9980
fcio32.fcio_flags = fcio->fcio_flags;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9981
fcio32.fcio_cmd_flags = fcio->fcio_cmd_flags;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9982
fcio32.fcio_ilen = fcio->fcio_ilen;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9983
fcio32.fcio_ibuf =
usr/src/uts/common/io/fibre-channel/impl/fp.c
9985
fcio32.fcio_olen = fcio->fcio_olen;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9986
fcio32.fcio_obuf =
usr/src/uts/common/io/fibre-channel/impl/fp.c
9988
fcio32.fcio_alen = fcio->fcio_alen;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9989
fcio32.fcio_abuf =
usr/src/uts/common/io/fibre-channel/impl/fp.c
9991
fcio32.fcio_errno = fcio->fcio_errno;
usr/src/uts/common/io/fibre-channel/impl/fp.c
9993
rval = ddi_copyout((void *)&fcio32, (void *)data,
usr/src/uts/common/io/fibre-channel/impl/fp.c
9994
sizeof (struct fcio32), mode);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1439
struct fcio32 fcio32;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1441
if (status = ddi_copyin((void *)arg, (void *)&fcio32,
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1442
sizeof (struct fcio32), mode)) {
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1446
fcio.fcio_xfer = fcio32.fcio_xfer;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1447
fcio.fcio_cmd = fcio32.fcio_cmd;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1448
fcio.fcio_flags = fcio32.fcio_flags;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1449
fcio.fcio_cmd_flags = fcio32.fcio_cmd_flags;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1450
fcio.fcio_ilen = (size_t)fcio32.fcio_ilen;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1451
fcio.fcio_ibuf = (caddr_t)(long)fcio32.fcio_ibuf;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1452
fcio.fcio_olen = (size_t)fcio32.fcio_olen;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1453
fcio.fcio_obuf = (caddr_t)(long)fcio32.fcio_obuf;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1454
fcio.fcio_alen = (size_t)fcio32.fcio_alen;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1455
fcio.fcio_abuf = (caddr_t)(long)fcio32.fcio_abuf;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1456
fcio.fcio_errno = fcio32.fcio_errno;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1689
struct fcio32 fcio32;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1691
fcio32.fcio_xfer = fcio->fcio_xfer;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1692
fcio32.fcio_cmd = fcio->fcio_cmd;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1693
fcio32.fcio_flags = fcio->fcio_flags;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1694
fcio32.fcio_cmd_flags = fcio->fcio_cmd_flags;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1695
fcio32.fcio_ilen = fcio->fcio_ilen;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1696
fcio32.fcio_ibuf = (caddr32_t)(long)fcio->fcio_ibuf;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1697
fcio32.fcio_olen = fcio->fcio_olen;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1698
fcio32.fcio_obuf = (caddr32_t)(long)fcio->fcio_obuf;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1699
fcio32.fcio_alen = fcio->fcio_alen;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1700
fcio32.fcio_abuf = (caddr32_t)(long)fcio->fcio_abuf;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1701
fcio32.fcio_errno = fcio->fcio_errno;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1703
status = ddi_copyout((void *)&fcio32, (void *)arg,
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1704
sizeof (struct fcio32), mode);
usr/src/uts/common/sys/fibre-channel/fcio.h
387
_NOTE(SCHEME_PROTECTS_DATA("unique per request", fcio32))