Searched refs:newContextId (Results 1 – 3 of 3) sorted by relevance
77 public override void OnContextChange(ulong newContextId) in OnContextChange() argument79 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()
71 public override void OnContextChange(ulong newContextId) in OnContextChange() argument73 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()
44 public abstract void OnContextChange(ulong newContextId); in OnContextChange() argument