Home
last modified time | relevance | path

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

/freebsd/sys/dev/hptmv/
H A Dentry.c2749 UCHAR Cdb[16]; in OsSendCommand() local
2761 bcopy(csio->cdb_io.cdb_ptr, Cdb, CdbLength); in OsSendCommand()
2772 bcopy(csio->cdb_io.cdb_bytes, Cdb, CdbLength); in OsSendCommand()
2781 switch (Cdb[0]) in OsSendCommand()
2786 pCmd->uCmd.Ide.Lba = ((ULONG)Cdb[1] << 16) | ((ULONG)Cdb[2] << 8) | (ULONG)Cdb[3]; in OsSendCommand()
2787 pCmd->uCmd.Ide.nSectors = (USHORT) Cdb[4]; in OsSendCommand()
2793 (HPT_U64)Cdb[2] << 56 | in OsSendCommand()
2794 (HPT_U64)Cdb[ in OsSendCommand()
[all...]
/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()