Searched refs:BusHookHandler (Results 1 – 4 of 4) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/ |
| D | BusHookHandler.cs | 14 public class BusHookHandler class 16 public BusHookHandler(BusHookDelegate action, SysbusAccessWidth width) in BusHookHandler() method in Antmicro.Renode.Peripherals.Bus.BusHookHandler
|
| D | SystemBus.cs | 52 hooksOnRead = new Dictionary<ulong, List<BusHookHandler>>(); in SystemBus() 53 hooksOnWrite = new Dictionary<ulong, List<BusHookHandler>>(); in SystemBus() 904 var handler = new BusHookHandler(hook, width); in AddWatchpointHook() 906 var dictionariesToUpdate = new List<Dictionary<ulong, List<BusHookHandler>>>(); in AddWatchpointHook() 924 dictionary[address] = new List<BusHookHandler> { handler }; in AddWatchpointHook() 934 List<BusHookHandler> handlers; in RemoveWatchpointHook() 957 … public bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> result) in TryGetWatchpointsAt() 2245 private readonly Dictionary<ulong, List<BusHookHandler>> hooksOnRead; 2246 private readonly Dictionary<ulong, List<BusHookHandler>> hooksOnWrite;
|
| D | IBusController.cs | 80 bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> result); in TryGetWatchpointsAt()
|
| D | BusControllerProxy.cs | 275 …lic virtual bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> result) in TryGetWatchpointsAt()
|