Home
last modified time | relevance | path

Searched refs:BusHookHandler (Results 1 – 4 of 4) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusHookHandler.cs14 public class BusHookHandler class
16 public BusHookHandler(BusHookDelegate action, SysbusAccessWidth width) in BusHookHandler() method in Antmicro.Renode.Peripherals.Bus.BusHookHandler
DSystemBus.cs52 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;
DIBusController.cs80 bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> result); in TryGetWatchpointsAt()
DBusControllerProxy.cs275 …lic virtual bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> result) in TryGetWatchpointsAt()