Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/GuestProfiling/
DPerfettoProfiler.cs77 public override void OnContextChange(ulong newContextId) in OnContextChange() argument
79 if(newContextId == currentContextId) in OnContextChange()
84 …evel.Debug, "Profiler: Changing context from: 0x{0:X} to 0x{1:X}", currentContextId, newContextId); in OnContextChange()
97 if(!wholeExecution.ContainsKey(newContextId)) in OnContextChange()
99 wholeExecution.Add(newContextId, new ProfilerContext()); in OnContextChange()
102 writer.CreateTrack($"Track: 0x{newContextId:X}", newContextId); in OnContextChange()
106 currentContextId = newContextId; in OnContextChange()
108 ulong newTrack = enableMultipleTracks ? newContextId : MainTrack; in OnContextChange()
DCollapsedStackProfiler.cs71 public override void OnContextChange(ulong newContextId) in OnContextChange() argument
73 if(newContextId == currentContextId) in OnContextChange()
82 …evel.Debug, "Profiler: Changing context from: 0x{0:X} to 0x{1:X}", currentContextId, newContextId); in OnContextChange()
84 if(!wholeExecution.ContainsKey(newContextId)) in OnContextChange()
86 wholeExecution.Add(newContextId, new ProfilerContext()); in OnContextChange()
89 currentContextId = newContextId; in OnContextChange()
DBaseProfiler.cs44 public abstract void OnContextChange(ulong newContextId); in OnContextChange() argument