1 instantiation of RuntimeAsyncTask
System.Private.CoreLib (1)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (1)
700RuntimeAsyncTask result = new();
15 references to RuntimeAsyncTask
System.Private.CoreLib (15)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (15)
361RuntimeAsyncTaskCore.DispatchContinuations<RuntimeAsyncTask, Ops>(this); 366RuntimeAsyncTaskCore.HandleSuspended<RuntimeAsyncTask, Ops>(this); 378Debug.Assert(state is RuntimeAsyncTask); 379((RuntimeAsyncTask)state).MoveNext(); 384Debug.Assert(state is RuntimeAsyncTask); 385((RuntimeAsyncTask)state).MoveNext(); 388private struct Ops : IRuntimeAsyncTaskOps<RuntimeAsyncTask> 390public static Action GetContinuationAction(RuntimeAsyncTask task) => (Action)task.m_action!; 391public static Continuation MoveContinuationState(RuntimeAsyncTask task) 398public static void SetContinuationState(RuntimeAsyncTask task, Continuation value) 404public static bool SetCompleted(RuntimeAsyncTask task) 409public static void PostToSyncContext(RuntimeAsyncTask task, SynchronizationContext syncContext) 414public static void ValueTaskSourceOnCompleted(RuntimeAsyncTask task, IValueTaskSourceNotifier vtsNotifier, ValueTaskSourceOnCompletedFlags configFlags) 419public static ref byte GetResultStorage(RuntimeAsyncTask task) => ref Unsafe.NullRef<byte>(); 700RuntimeAsyncTask result = new();