Home
last modified time | relevance | path

Searched refs:LogicalBlockAddress (Results 1 – 7 of 7) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Storage/SCSI/Commands/
DSCSICommands.cs135 public uint LogicalBlockAddress; field
151 public ulong LogicalBlockAddress; field
187 public uint LogicalBlockAddress; field
209 public ulong LogicalBlockAddress; field
239 public uint LogicalBlockAddress; field
253 public ulong LogicalBlockAddress; field
367 public uint LogicalBlockAddress; field
385 public ulong LogicalBlockAddress; field
425 public uint LogicalBlockAddress; field
461 public uint LogicalBlockAddress; field
[all …]
DIReadWrite10Command.cs15 uint LogicalBlockAddress { get; set; } property
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DSCSI.cs25 public uint LogicalBlockAddress; field in Antmicro.Renode.Peripherals.USBDeprecated.SCSI.CommandDescriptorBlock
53 …this.LogicalBlockAddress = (uint)((uint)((data[1] & 0x1fu) << 16) | (uint)(data[2] << 8) | data[3]… in Fill()
63 … this.LogicalBlockAddress = (uint)(data[2] << 24 | data[3] << 16 | data[4] << 8 | data[5]); in Fill()
74 … this.LogicalBlockAddress = (uint)(data[2] << 24 | data[3] << 16 | data[4] << 8 | data[5]); in Fill()
DMassStorage.cs175 … lbaBackend.Write((int)writeCDB.LogicalBlockAddress, data, (int)writeCDB.TransferLength); in WriteDataBulk()
229 … var dataRead = lbaBackend.Read((int)cdb.LogicalBlockAddress, (int)cdb.TransferLength); in ReceiveCommandBlockWrapper()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/
DCDROM.cs76 …rgs: LogicalBlockAddress: 0x{0:x}, TransferLength: {1}", (uint)cmd.LogicalBlockAddress, (ushort)cm… in HandleCommand()
78 var readPosition = (long)cmd.LogicalBlockAddress * BlockSize; in HandleCommand()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DUSBPendrive.cs180 …rgs: LogicalBlockAddress: 0x{0:x}, TransferLength: {1}", (uint)cmd.LogicalBlockAddress, (ushort)cm… in HandleCommand()
182 var readPosition = (long)cmd.LogicalBlockAddress * BlockSize; in HandleCommand()
194 … var position = (long)((dynamic)writeCommandDescriptor).LogicalBlockAddress * BlockSize; in HandleCommand()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/
DUFSDevice.cs368 var readPosition = scsi.LogicalBlockAddress * LogicalBlockSize; in HandleSCSIRead10()
388 var writePosition = scsi.LogicalBlockAddress * LogicalBlockSize; in HandleSCSIWrite10()