Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/
DGenericI2cEeprom.cs80 var bytesToWrite = Math.Min(count, pageSize - pageOffset); in Write()
81 …"Write {0} bytes to address 0x{1:X4}: {2}", bytesToWrite, currentAddress, data.Skip(index).Take(by… in Write()
82 Memory.WriteBytes(currentAddress, data, index, bytesToWrite); in Write()
83 index += bytesToWrite; in Write()
84 count -= bytesToWrite; in Write()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DUSBPendrive.cs108 bytesToWrite = 0; in Reset()
130 if(packet.Length > bytesToWrite) in HandleData()
132 … data ({0} bytes) than expected ({1} bytes). Aborting the operation", packet.Length, bytesToWrite); in HandleData()
139 bytesToWrite -= (uint)packet.Length; in HandleData()
140 if(bytesToWrite == 0) in HandleData()
196bytesToWrite = (uint)((dynamic)writeCommandDescriptor).TransferLength * BlockSize; in HandleCommand()
197 …y, "Preparing to write {1} bytes of data at address: 0x{0:x}", dataBackend.Position, bytesToWrite); in HandleCommand()
217 private uint bytesToWrite; field in Antmicro.Renode.Peripherals.USB.USBPendrive
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSVDParser.cs112 int bytesToWrite = CheckAndGetWidth(width); in TryWriteAccess()
114 if(HitInTheRegisterDictionary(out var tmpRegister, offset, bytesToWrite)) in TryWriteAccess()