Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusControllerProxy.cs135 …tes(ulong address, int count, byte[] destination, int startIndex, bool onlyMemory = false, IPeriph… in ReadBytes() argument
139 … ParentController.ReadBytes(address, count, destination, startIndex, onlyMemory, context); in ReadBytes()
143 …public virtual byte[] ReadBytes(ulong address, int count, bool onlyMemory = false, IPeripheral con… in ReadBytes() argument
146 ReadBytes(address, count, result, 0, onlyMemory, context); in ReadBytes()
155 …public virtual void WriteBytes(byte[] bytes, ulong address, bool onlyMemory = false, IPeripheral c… in WriteBytes() argument
157 WriteBytes(bytes, address, bytes.Length, onlyMemory, context); in WriteBytes()
160 …Bytes(byte[] bytes, ulong address, int startingIndex, long count, bool onlyMemory = false, IPeriph… in WriteBytes() argument
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() argument
170 WriteBytes(bytes, address, 0, count, onlyMemory, context); in WriteBytes()
DIBusController.cs47 …tes(ulong address, int count, byte[] destination, int startIndex, bool onlyMemory = false, IPeriph… in ReadBytes() argument
48 … byte[] ReadBytes(ulong address, int count, bool onlyMemory = false, IPeripheral context = null); in ReadBytes() argument
50 … void WriteBytes(byte[] bytes, ulong address, bool onlyMemory = false, IPeripheral context = null); in WriteBytes() argument
51 …void WriteBytes(byte[] bytes, ulong address, int startingIndex, long count, bool onlyMemory = fals… in WriteBytes() argument
52 …void WriteBytes(byte[] bytes, ulong address, long count, bool onlyMemory = false, IPeripheral cont… in WriteBytes() argument
DSystemBus.cs604 …tes(ulong address, int count, byte[] destination, int startIndex, bool onlyMemory = false, IPeriph… in ReadBytes() argument
609 if(onlyMemory) in ReadBytes()
634 …public byte[] ReadBytes(ulong address, int count, bool onlyMemory = false, IPeripheral context = n… in ReadBytes() argument
637 ReadBytes(address, count, result, 0, onlyMemory, context); in ReadBytes()
646 …public void WriteBytes(byte[] bytes, ulong address, bool onlyMemory = false, IPeripheral context =… in WriteBytes() argument
648 WriteBytes(bytes, address, bytes.Length, onlyMemory, context); in WriteBytes()
651 …Bytes(byte[] bytes, ulong address, int startingIndex, long count, bool onlyMemory = false, IPeriph… in WriteBytes() argument
656 if(onlyMemory) in WriteBytes()
681 …public void WriteBytes(byte[] bytes, ulong address, long count, bool onlyMemory = false, IPeripher… in WriteBytes() argument
683 WriteBytes(bytes, address, 0, count, onlyMemory, context); in WriteBytes()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/
DUFSHostController.cs337 …eAddress, count: UTPTransferRequestDescriptorSizeInBytes * TransferRequestSlots, onlyMemory: true); in ProcessTransferRequestList()
357 var upiuBytes = sysbus.ReadBytes(ucdBaseAddress, requestLength, onlyMemory: true); in ProcessTransferRequestList()
364 … prdtBytes = sysbus.ReadBytes(prtdBaseAddress, prdtBytesCount, onlyMemory: true); in ProcessTransferRequestList()
372 sysbus.WriteBytes(responseBytes, responseUPIUBaseAddress, onlyMemory: true); in ProcessTransferRequestList()
446 … var dataSegment = sysbus.ReadBytes(dataBaseAddress, dataSegmentLength, onlyMemory: true); in PrepareDataOutTransfer()
480 sysbus.WriteBytes(dataSegment, dataBaseAddress, onlyMemory: true); in HandleDataInTransfer()
507 …ess, UTPTaskManagementRequestDescriptorSizeInBytes * TaskManagementRequestSlots, onlyMemory: true); in ProcessTaskManagementRequestList()
525 …askManagementRequestHeaderSizeInBytes + UTPTaskManagementRequestUPIUSizeInBytes, onlyMemory: true); in ProcessTaskManagementRequestList()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DCalculateCRCCommand.cs48 …mBus.ReadBytes(access.Address, (int)access.Length, data, currentIndex, onlyMemory: true, context: … in Execute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DAmbiqApollo4_Security.cs48 data = systemBus.ReadBytes(address.Value, byteLength, onlyMemory: true); in CalculateCrc32()
DMAX32650_TPU.cs35 …data = sysbus.ReadBytes((ulong)dmaSourceAddress.Value, (int)dmaDataLength.Value, onlyMemory: true); in CalculateCrc32()