Home
last modified time | relevance | path

Searched refs:WhatIsAt (Results 1 – 8 of 8) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DCalculateCRCCommand.cs41 if(manager.Machine.SystemBus.WhatIsAt(access.Address, context: manager.Cpu) == null) in Execute()
DReadMemoryCommand.cs35 if(manager.Machine.SystemBus.WhatIsAt(access.Address, context: manager.Cpu) == null) in Execute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/DMA/
DDmaEngine.cs42 var whatIsAtSource = sysbus.WhatIsAt(sourceAddress, context); in IssueCopy()
104 var whatIsAtDestination = sysbus.WhatIsAt(destinationAddress, context); in IssueCopy()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusControllerProxy.cs188 … public virtual IBusRegistered<IBusPeripheral> WhatIsAt(ulong address, IPeripheral context = null) in WhatIsAt() method in Antmicro.Renode.Peripherals.Bus.BusControllerProxy
191 return ParentController.WhatIsAt(address, context); in WhatIsAt()
DIBusController.cs57 IBusRegistered<IBusPeripheral> WhatIsAt(ulong address, IPeripheral context = null); in WhatIsAt() method
DSystemBus.cs512 var busRegisteredPeripheral = WhatIsAt(address, context); in UnregisterFromAddress()
551 public IBusRegistered<IBusPeripheral> WhatIsAt(ulong address, IPeripheral context = null) in WhatIsAt() method in Antmicro.Renode.Peripherals.Bus.SystemBus
558 var registered = WhatIsAt(address, context); in WhatPeripheralIsAt()
1778 var what = WhatIsAt(currentPosition, context); in FindTargets()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DSTM32L0_FlashController.cs261 var registered = machine.SystemBus.WhatIsAt(physicalAddress); in EraseMemoryAccessHook()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DBaseCPU.cs919 var what = machine.SystemBus.WhatIsAt(entryPoint, this); in SetPCFromEntryPoint()