Home
last modified time | relevance | path

Searched refs:Cdb (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/dev/hptmv/
H A Dentry.c2747 UCHAR Cdb[16]; in OsSendCommand() local
2759 bcopy(csio->cdb_io.cdb_ptr, Cdb, CdbLength); in OsSendCommand()
2770 bcopy(csio->cdb_io.cdb_bytes, Cdb, CdbLength); in OsSendCommand()
2779 switch (Cdb[0]) in OsSendCommand()
2784 pCmd->uCmd.Ide.Lba = ((ULONG)Cdb[1] << 16) | ((ULONG)Cdb[2] << 8) | (ULONG)Cdb[3]; in OsSendCommand()
2785 pCmd->uCmd.Ide.nSectors = (USHORT) Cdb[4]; in OsSendCommand()
2791 (HPT_U64)Cdb[2] << 56 | in OsSendCommand()
2792 (HPT_U64)Cdb[3] << 48 | in OsSendCommand()
2793 (HPT_U64)Cdb[4] << 40 | in OsSendCommand()
2794 (HPT_U64)Cdb[5] << 32 | in OsSendCommand()
[all …]
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DScsiIo.h115 VOID *Cdb; member
H A DScsiPassThru.h88 VOID *Cdb; member
H A DScsiPassThruExt.h106 VOID *Cdb; member
/freebsd/sys/dev/arcmsr/
H A Darcmsr.h1238 u_int8_t Cdb[16]; /* 10h SCSI CDB */ member
H A Darcmsr.c1003 bcopy(scsiio_cdb_ptr(pcsio), arcmsr_cdb->Cdb, pcsio->cdb_len); in arcmsr_build_srb()