Searched refs:bytesToWrite (Results 1 – 3 of 3) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/ |
| D | GenericI2cEeprom.cs | 80 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/ |
| D | USBPendrive.cs | 108 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() 196 … bytesToWrite = (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/ |
| D | SVDParser.cs | 112 int bytesToWrite = CheckAndGetWidth(width); in TryWriteAccess() 114 if(HitInTheRegisterDictionary(out var tmpRegister, offset, bytesToWrite)) in TryWriteAccess()
|