Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSystemBus.cs52 hooksOnRead = new Dictionary<ulong, List<BusHookHandler>>(); in SystemBus()
910 dictionariesToUpdate.Add(hooksOnRead); in AddWatchpointHook()
932 foreach(var hookDictionary in new [] { hooksOnRead, hooksOnWrite }) in RemoveWatchpointHook()
951 hooksOnRead.Remove(address); in RemoveAllWatchpointHooks()
961 if(hooksOnRead.TryGetValue(address, out result)) in TryGetWatchpointsAt()
1826 … foreach(var address in hooksOnRead.Select(x => x.Key).Union(hooksOnWrite.Select(x => x.Key))) in UpdatePageAccesses()
1870 hooksOnRead.Clear(); in InitStructures()
2245 private readonly Dictionary<ulong, List<BusHookHandler>> hooksOnRead; field in Antmicro.Renode.Peripherals.Bus.SystemBus