Home
last modified time | relevance | path

Searched refs:START_STOP (Results 1 – 12 of 12) sorted by relevance

/reactos/drivers/storage/class/cdrom/
H A Dcommon.c958 cdb->START_STOP.OperationCode = SCSIOP_START_STOP_UNIT; in DeviceSendStartUnit()
959 cdb->START_STOP.Start = 1; in DeviceSendStartUnit()
960 cdb->START_STOP.Immediate = 0; in DeviceSendStartUnit()
961 cdb->START_STOP.LogicalUnitNumber = srb->Lun; in DeviceSendStartUnit()
3706 cdb->START_STOP.OperationCode = SCSIOP_START_STOP_UNIT; in _IRQL_requires_max_()
3707 cdb->START_STOP.Start = 0; in _IRQL_requires_max_()
3708 cdb->START_STOP.Immediate = 1; in _IRQL_requires_max_()
H A Dioctl.c3900 (cdb->START_STOP.LoadEject == 1) && in _IRQL_requires_max_()
3901 (cdb->START_STOP.Start == 0)) in _IRQL_requires_max_()
6548 cdb->START_STOP.OperationCode = SCSIOP_START_STOP_UNIT; in _IRQL_requires_max_()
6549 cdb->START_STOP.LoadEject = 1; in _IRQL_requires_max_()
6553 cdb->START_STOP.Start = 0; in _IRQL_requires_max_()
6566 cdb->START_STOP.Start = 1; in _IRQL_requires_max_()
7894 cdb.START_STOP.OperationCode = SCSIOP_START_STOP_UNIT; in _IRQL_requires_max_()
7895 cdb.START_STOP.Immediate = 1; in _IRQL_requires_max_()
7896 cdb.START_STOP.Start = 0; in _IRQL_requires_max_()
7897 cdb.START_STOP.LoadEject = 0; in _IRQL_requires_max_()
/reactos/drivers/storage/class/classpnp/
H A Dpower.c434 cdb->START_STOP.OperationCode = SCSIOP_START_STOP_UNIT; in ClasspPowerUpCompletion()
435 cdb->START_STOP.Start = 1; in ClasspPowerUpCompletion()
1245 cdb->START_STOP.OperationCode = SCSIOP_START_STOP_UNIT; in ClasspPowerDownCompletion()
1246 cdb->START_STOP.Start = 0; in ClasspPowerDownCompletion()
1247 cdb->START_STOP.Immediate = 1; in ClasspPowerDownCompletion()
H A Dxferpkt.c1576 pCdb->START_STOP.OperationCode = SCSIOP_START_STOP_UNIT;
1577 pCdb->START_STOP.Start = 1;
1578 pCdb->START_STOP.Immediate = 0;
1579 pCdb->START_STOP.LogicalUnitNumber = 0;
H A Dclass.c3165 cdb->START_STOP.OperationCode = SCSIOP_START_STOP_UNIT; in ClassSendStartUnit()
3166 cdb->START_STOP.Start = 1; in ClassSendStartUnit()
3167 cdb->START_STOP.Immediate = 0; in ClassSendStartUnit()
3168 cdb->START_STOP.LogicalUnitNumber = srb->Lun; in ClassSendStartUnit()
8285 cdb->START_STOP.OperationCode = SCSIOP_START_STOP_UNIT;
8286 cdb->START_STOP.LoadEject = 1;
8289 cdb->START_STOP.Start = 0;
8291 cdb->START_STOP.Start = 1;
/reactos/base/applications/atactl/
H A Datactl.cpp1660 cdb.START_STOP.OperationCode = SCSIOP_START_STOP_UNIT; in ata_power_mode()
1661 cdb.START_STOP.Immediate = 1; in ata_power_mode()
1662 cdb.START_STOP.PowerConditions = power_mode; in ata_power_mode()
1663 cdb.START_STOP.Start = (power_mode != StartStop_Power_Sleep); in ata_power_mode()
/reactos/drivers/storage/ide/uniata/
H A Did_ata.cpp8697 if(cdb->START_STOP.FL ||
8698 cdb->START_STOP.FormatLayerNumber ||
8699 cdb->START_STOP.Reserved2 ||
8700 cdb->START_STOP.Reserved2_2 ||
8701 cdb->START_STOP.Reserved3 ||
8706 if (cdb->START_STOP.PowerConditions) {
8708 switch(cdb->START_STOP.PowerConditions) {
8725 LunExt->PowerState = cdb->START_STOP.PowerConditions;
8727 if (cdb->START_STOP.LoadEject == 1) {
8735 if (cdb->START_STOP.Start == 0) {
[all …]
H A Dscsi.h404 } START_STOP, *PSTART_STOP; member
/reactos/drivers/filesystems/udfs/CDRW/
H A Dcdrw_hw.h398 } START_STOP, *PSTART_STOP; member
/reactos/sdk/include/ddk/
H A Dstorport.h1298 } START_STOP, *PSTART_STOP; member
H A Dscsi.h1513 } START_STOP, *PSTART_STOP; member
/reactos/drivers/storage/ide/atapi/
H A Datapi.c5617 if (cdb->START_STOP.LoadEject == 1){ in IdeSendCommand()