Searched refs:temporaryBreakpoints (Results 1 – 1 of 1) sorted by relevance
/Renode-v1.15.3-c57714d/tools/sel4_extensions/ |
D | seL4Extensions.cs | 51 this.temporaryBreakpoints = new Dictionary<ulong, HashSet<string>>(); in SeL4DebugHelper() 111 SetBreakpointHelper(threadName, address, temporaryBreakpoints); in SetTemporaryBreakpoint() 125 RemoveBreakpointHelper(threadName, address, temporaryBreakpoints); in RemoveTemporaryBreakpoint() 151 foreach(var item in temporaryBreakpoints.ToList()) in RemoveAllBreakpoints() 159 temporaryBreakpoints.Remove(item.Key); in RemoveAllBreakpoints() 173 ….Concat(temporaryBreakpoints.SelectMany(t => t.Value, (entry, thread) => new { Thread = thread, Ad… in GetBreakpoints() 196 ….Concat(temporaryBreakpoints.SelectMany(t => t.Value, (entry, thread) => new { Thread = thread, Ad… in GetBreakpointsPlain() 395 temporaryBreakpoints.TryGetValue(address, out var tbp); in GetBreakpointsCount() 420 …(temporaryBreakpoints.TryGetValue(address, out var tbpList) && (tbpList.Contains(AnyThreadName) ||… in DoBreakpointExists() 435 if(!temporaryBreakpoints.ContainsKey(address)) in ClearTemporaryBreakpoint() [all …]
|