#include <cdb.h>


Definition at line 147 of file cdb.h.
Public Member Functions | |
| cdb_TestUnitReady () | |
| virtual | ~cdb_TestUnitReady () |
| virtual const UInt8_t * | GetCmdPointer () const |
| virtual UInt32_t | GetCmdSize () const |
| virtual Direction_e | GetTransferDirection () const |
Private Attributes | |
| log_CLASSID_m | |
| cdb_TestUnitReady_t | m_testUnitReadyCmd |
| cdb_TestUnitReady::cdb_TestUnitReady | ( | ) |
Definition at line 33 of file cdb_testunitready.cpp.
References m_testUnitReadyCmd, op_TEST_UNIT_READY, and cdb_TestUnitReady_t::opcode.
00033 { 00034 00035 memset(&m_testUnitReadyCmd, 0, sizeof(m_testUnitReadyCmd)); 00036 m_testUnitReadyCmd.opcode = op_TEST_UNIT_READY; 00037 }
| cdb_TestUnitReady::~cdb_TestUnitReady | ( | ) | [virtual] |
| const UInt8_t * cdb_TestUnitReady::GetCmdPointer | ( | ) | const [virtual] |
Reimplemented from scsi_CDB.
Definition at line 42 of file cdb_testunitready.cpp.
References m_testUnitReadyCmd.
00042 { 00043 return reinterpret_cast<UInt8_t*>( 00044 const_cast<cdb_TestUnitReady_t*>(&m_testUnitReadyCmd) ); 00045 }
| UInt32_t cdb_TestUnitReady::GetCmdSize | ( | ) | const [virtual] |
Reimplemented from scsi_CDB.
Definition at line 47 of file cdb_testunitready.cpp.
References m_testUnitReadyCmd.
00047 { 00048 return sizeof(m_testUnitReadyCmd); 00049 }
| Direction_e cdb_TestUnitReady::GetTransferDirection | ( | ) | const [virtual] |
Implements scsi_CDB.
Definition at line 51 of file cdb_testunitready.cpp.
References TRANSFER_NONE.
00051 { 00052 return TRANSFER_NONE; 00053 }
cdb_TestUnitReady::log_CLASSID_m [private] |
Definition at line 160 of file cdb.h.
Referenced by cdb_TestUnitReady(), GetCmdPointer(), and GetCmdSize().
1.5.6