| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/X86/ACPI/ |
| D | ACPIExtensions.cs | 24 bus.WriteBytes(Packet.Encode(rootSystemDescriptionPointer), address); in GenerateACPITable() 32 … bus.WriteBytes(Packet.Encode(rootSystemDescriptionTable), rootSystemDescriptionTableOffset); in GenerateACPITable() 35 … bus.WriteBytes(Packet.Encode(fixedACPIDescriptionTable), fixedACPIDescriptionTableAddress); in GenerateACPITable() 44 …bus.WriteBytes(Packet.Encode(multipleAPICDescriptionTable), multipleAPICDescriptionTableHeaderAddr… in GenerateACPITable() 59 bus.WriteBytes(table, recordAddress); in GenerateACPITable()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Test/PeripheralsTests/ |
| D | OpenTitan_SpiDeviceTest.cs | 48 spiHost.WriteBytes("deadbeef"); in ShouldReceiveDataToFifo() 74 spiHost.WriteBytes(hexstring); in ShouldBeAbleToResetFifos() 94 spiHost.WriteBytes("FF"); in ShouldSetInterruptOnRxFifoFull() 97 spiHost.WriteBytes("FF"); in ShouldSetInterruptOnRxFifoFull() 109 spiHost.WriteBytes("FF"); in ShouldSetInterruptOnRxOverflow() 112 spiHost.WriteBytes("FF"); in ShouldSetInterruptOnRxOverflow() 123 spiHost.WriteBytes("FF"); in ShouldSetInterruptOnRxFifoWatermark() 126 spiHost.WriteBytes("FF"); in ShouldSetInterruptOnRxFifoWatermark()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | OpenTitan_ScrambledMemory.cs | 44 public void WriteBytes(long offset, byte[] value) in WriteBytes() method in Antmicro.Renode.Peripherals.Miscellaneous.OpenTitan_ScrambledMemory 47 underlyingMemory.WriteBytes(offset, value); in WriteBytes()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Memory/ |
| D | MappedMemory.cs | 226 WriteBytes(offset, bytes); in WriteDoubleWord() 267 WriteBytes(offset, bytes); in WriteQuadWord() 304 public void WriteBytes(long offset, byte[] value) in WriteBytes() method in Antmicro.Renode.Peripherals.Memory.MappedMemory 306 WriteBytes(offset, value, 0, value.Length); in WriteBytes() 309 public void WriteBytes(long offset, byte[] value, int count) in WriteBytes() method in Antmicro.Renode.Peripherals.Memory.MappedMemory 311 WriteBytes(offset, value, 0, count); in WriteBytes() 314 …public void WriteBytes(long offset, byte[] array, int startingIndex, int count, IPeripheral contex… in WriteBytes() method in Antmicro.Renode.Peripherals.Memory.MappedMemory 338 …WriteBytes(offset, new System.Text.ASCIIEncoding().GetBytes(value).Concat(new []{ (byte)'\0' }).To… in WriteString() 424 WriteBytes(i * SegmentSize, buf); in InitWithRandomData() 448 WriteBytes(rangeStart, array); in SetRange()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/ |
| D | BusControllerProxy.cs | 155 …public virtual void WriteBytes(byte[] bytes, ulong address, bool onlyMemory = false, IPeripheral c… in WriteBytes() method in Antmicro.Renode.Peripherals.Bus.BusControllerProxy 157 WriteBytes(bytes, address, bytes.Length, onlyMemory, context); in WriteBytes() 160 …public virtual void WriteBytes(byte[] bytes, ulong address, int startingIndex, long count, bool on… in WriteBytes() method in Antmicro.Renode.Peripherals.Bus.BusControllerProxy 164 … ParentController.WriteBytes(bytes, address, startingIndex, count, onlyMemory, context); in WriteBytes() 168 …public virtual void WriteBytes(byte[] bytes, ulong address, long count, bool onlyMemory = false, I… in WriteBytes() method in Antmicro.Renode.Peripherals.Bus.BusControllerProxy 170 WriteBytes(bytes, address, 0, count, onlyMemory, context); in WriteBytes() 173 …public virtual void WriteBytes(long offset, byte[] array, int startingIndex, int count, IPeriphera… in WriteBytes() method in Antmicro.Renode.Peripherals.Bus.BusControllerProxy 175 WriteBytes(array, (ulong)offset, startingIndex, count, context: context); in WriteBytes()
|
| D | Redirector.cs | 83 …public void WriteBytes(long offset, byte[] array, int startingIndex, int count, IPeripheral contex… in WriteBytes() method in Antmicro.Renode.Peripherals.Bus.Redirector 85 … systemBus.WriteBytes(array, redirectedAddress + checked((ulong)offset), count, context: context); in WriteBytes()
|
| D | IMultibyteWritePeripheral.cs | 15 …void WriteBytes(long offset, byte[] array, int startingIndex, int count, IPeripheral context = nul… in WriteBytes() method
|
| D | IBusController.cs | 50 … void WriteBytes(byte[] bytes, ulong address, bool onlyMemory = false, IPeripheral context = null); in WriteBytes() method 51 …void WriteBytes(byte[] bytes, ulong address, int startingIndex, long count, bool onlyMemory = fals… in WriteBytes() method 52 …void WriteBytes(byte[] bytes, ulong address, long count, bool onlyMemory = false, IPeripheral cont… in WriteBytes() method
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/ |
| D | MessageAuthenticationServiceProvider.cs | 42 bus.WriteBytes(GetHashedBytes((int)hashInputLength, bytes), hashResultLocation); in PerformSHADMA() 116 bus.WriteBytes(result, hashResultLocation); in DMAHMACSHA() 162 bus.WriteBytes(ciphertext, resultAddr); in DMAGCM() 164 bus.WriteBytes(tag, macAddr); in DMAGCM()
|
| D | InternalMemoryManager.cs | 77 mem.WriteBytes(internalOffset, bytes); in TryWriteBytes()
|
| D | AESServiceProvider.cs | 80 … bus.WriteBytes(GetResultBytesCTR(keyBytes, ivBytes, inputBytes, operation), resultDataAddr); in PerformAESOperationDMA() 83 … bus.WriteBytes(GetResultBytesCBC(keyBytes, ivBytes, inputBytes, operation), resultDataAddr); in PerformAESOperationDMA()
|
| D | InternalMemoryAccessor.cs | 62 public void WriteBytes(long offset, byte[] bytes) in WriteBytes() method in Antmicro.Renode.Peripherals.Miscellaneous.Crypto.InternalMemoryAccessor
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/DMA/ |
| D | DmaEngine.cs | 121 sysbus.WriteBytes(buffer, destinationAddress, context: context); in IssueCopy() 134 sysbus.WriteBytes(chunk, writeAddress, context: context); in IssueCopy() 148 … sysbus.WriteBytes(buffer.Skip(skipCount).ToArray(), destinationAddress, context: context); in IssueCopy()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/ |
| D | MachineExtensions.cs | 63 sysbus.WriteBytes(fdtBlob, address, true, context); in LoadFdt() 112 sysbus.WriteBytes(fdtBlob, address, true, context); in LoadFdt() 117 sysbus.WriteBytes(Encoding.ASCII.GetBytes(stringToLoad), address, true, context); in WriteASCIIString()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/ |
| D | CC2538FlashController.cs | 83 flash.WriteBytes(0x800 * i, ErasePattern, 0, PageSize); in Reset() 114 flash.WriteBytes((long)((writeAddress) & ~(PageSize - 1)), ErasePattern, 0, PageSize); in Erase()
|
| D | EFR32xg13FlashController.cs | 141 flash.WriteBytes(PageSize * i, ErasePattern, 0, PageSize); in Reset() 210 flash.WriteBytes((long)(internalAddressRegister), ErasePattern, 0, PageSize); in ErasePage()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/S32K3XX_FlexCAN/ |
| D | S32K3XX_FlexCAN_Structures.cs | 195 buffer.WriteBytes((long)offset, dataToBeWritten, 0, (int)MetaSize); in FillReceivedFrame() 196 buffer.WriteBytes((long)offset + MetaSize, data, 0, (int)data.Length); in FillReceivedFrame() 223 buffer.WriteBytes((long)offset, data, 0, (int)MetaSize); in Finalize() 410 buffer.WriteBytes((long)offset, dataToBeWritten, 0, (int)MetaSize); in CommitToMemory() 411 buffer.WriteBytes((long)offset + MetaSize, data, 0, (int)data.Length); in CommitToMemory()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/ |
| D | SpiHost.cs | 38 public void WriteBytes(string hexString) in WriteBytes() method in Antmicro.Renode.Extensions.Mocks.SpiHost
|
| D | I2CHost.cs | 37 public void WriteBytes(uint addr, string hexString) in WriteBytes() method in Antmicro.Renode.Extensions.Mocks.I2CHost
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/MonitorTests/CommandTests/ |
| D | PythonCommands.cs | 71 machine.SystemBus.WriteBytes(bytes, address); in DumpTest() 110 machine.SystemBus.WriteBytes(bytes, address); in DumpFileTest()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | ICanLoadFiles.cs | 39 … peripheral.WriteBytes((long)chunk.OffsetToLoad, chunkData, 0, chunkData.Length, context: cpu); in LoadFileChunks()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | SystemBusTests.cs | 291 sysbus.WriteBytes(bytes, 4); in ShouldHandleWriteToMemorySegment() 302 sysbus.WriteBytes(bytes, 10); in ShouldHandlePartialWriteToMemorySegmentAtTheBeginning() 337 machine.SystemBus.WriteBytes(testArray, 0); in ShouldReadBytes() 368 sysbus.WriteBytes(bytes, 0xC0000000 - 4); in ShouldHandlePartialWriteToMemorySegmentAtTheEnd() 379 sb.WriteBytes(bytes, 100); in ShouldHandleWriteToAHoleBetweenMemorySegments() 391 sysbus.WriteBytes(hugeBytes, 0xC0000000 - 4); in ShouldHandleWriteOverlappingMemorySegment()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/ |
| D | GenericI2cEeprom.cs | 82 Memory.WriteBytes(currentAddress, data, index, bytesToWrite); in Write() 91 Memory.WriteBytes(pageStart, data, index, count); in Write()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/UART/ |
| D | VirtualConsole.cs | 98 bus.WriteBytes(buffer, address, true, context); in WriteBufferToMemory()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/ |
| D | UFSHostController.cs | 372 sysbus.WriteBytes(responseBytes, responseUPIUBaseAddress, onlyMemory: true); in ProcessTransferRequestList() 380 sysbus.WriteBytes(utrdUpdated, utrlBaseAddress + (ulong)utrdOffset); in ProcessTransferRequestList() 480 sysbus.WriteBytes(dataSegment, dataBaseAddress, onlyMemory: true); in HandleDataInTransfer() 525 …sysbus.WriteBytes(responseBytes, utmrlBaseAddress + (ulong)utmrdOffset + UTPTaskManagementRequestH… in ProcessTaskManagementRequestList() 533 sysbus.WriteBytes(utmrdUpdated, utmrlBaseAddress + (ulong)utmrdOffset); in ProcessTaskManagementRequestList()
|