3 writes to Continuation
System.Private.CoreLib (3)
src\System\Runtime\CompilerServices\AsyncProfiler.CoreCLR.cs (3)
479
state.
Continuation
= state.Continuation.Next;
493
state.
Continuation
= state.Continuation.Next;
529
state.
Continuation
= asyncCallstack;
9 references to Continuation
System.Private.CoreLib (9)
src\System\Runtime\CompilerServices\AsyncProfiler.CoreCLR.cs (9)
442
if (index > buffer.Length || state.
Continuation
== null)
458
currentNativeIP = (ulong)state.
Continuation
.ResumeInfo->DiagnosticIP;
476
callstackSpanIndex += Serializer.WriteCompressedInt32(callstackSpan.Slice(callstackSpanIndex, Serializer.MaxCompressedInt32Size), state.
Continuation
.State);
479
state.Continuation = state.
Continuation
.Next;
480
while (state.Count < maxAsyncCallstackFrames && state.
Continuation
!= null)
486
currentNativeIP = (ulong)state.
Continuation
.ResumeInfo->DiagnosticIP;
490
callstackSpanIndex += Serializer.WriteCompressedInt32(callstackSpan.Slice(callstackSpanIndex, Serializer.MaxCompressedInt32Size), state.
Continuation
.State);
493
state.Continuation = state.
Continuation
.Next;
499
return state.
Continuation
== null || state.Count == byte.MaxValue;