Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DBreakpointCommand.cs20 watchpoints = new Dictionary<WatchpointDescriptor, int>(); in BreakpointCommand()
178 …private static IEnumerable<WatchpointDescriptor> CalculateAllCoveringAddressess(ulong address, uin… in CalculateAllCoveringAddressess()
184 … yield return new WatchpointDescriptor(address - (ulong)(-offset), width, access, hook); in CalculateAllCoveringAddressess()
189 private readonly Dictionary<WatchpointDescriptor, int> watchpoints;
191 private class WatchpointDescriptor class in Antmicro.Renode.Utilities.GDB.Commands.BreakpointCommand
193 …public WatchpointDescriptor(ulong address, SysbusAccessWidth width, Access access, BusHookDelegate… in WatchpointDescriptor() method in Antmicro.Renode.Utilities.GDB.Commands.BreakpointCommand.WatchpointDescriptor
203 var objAsBreakpointDescriptor = obj as WatchpointDescriptor; in Equals()