1 instantiation of TplEventSource
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TplEventSource.cs (1)
43public static readonly TplEventSource Log = new TplEventSource();
148 references to TplEventSource
System.Private.CoreLib (148)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ActivityTracker.cs (6)
55if (useTplSource && TplEventSource.Log.IsEnabled(EventLevel.Informational, TplEventSource.Keywords.TasksFlowActivityIds)) 66TplEventSource? log = useTplSource ? TplEventSource.Log : null; 134TplEventSource? log = useTplSource ? TplEventSource.Log : null;
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
614TplEventSource.Log?.SetActivityId(activityId); 709TplEventSource.Log?.SetActivityId(activityId);
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncMethodBuilderCore.cs (3)
80get => TplEventSource.Log.IsEnabled(EventLevel.Warning, TplEventSource.Keywords.AsyncMethod); 108TplEventSource.Log.TraceOperationBegin(t.Id, "Async: " + stateMachineType.Name, 0);
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncTaskMethodBuilderT.cs (7)
231if (TplEventSource.Log.IsEnabled()) 270TplEventSource.Log.IncompleteAsyncMethod(this); 356bool loggingOn = TplEventSource.Log.IsEnabled(); 359TplEventSource.Log.TraceSynchronousWorkBegin(this.Id, CausalitySynchronousWork.Execution); 387TplEventSource.Log.TraceSynchronousWorkEnd(CausalitySynchronousWork.Execution); 489if (TplEventSource.Log.IsEnabled()) 491TplEventSource.Log.TraceOperationEnd(task.Id, AsyncCausalityStatus.Completed);
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncVoidMethodBuilder.cs (4)
78if (TplEventSource.Log.IsEnabled()) 80TplEventSource.Log.TraceOperationEnd(this.Task.Id, AsyncCausalityStatus.Completed); 118if (TplEventSource.Log.IsEnabled()) 120TplEventSource.Log.TraceOperationEnd(this.Task.Id, AsyncCausalityStatus.Error);
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\TaskAwaiter.cs (8)
180if (TplEventSource.Log.IsEnabled() || Task.s_asyncDebuggingEnabled) 199if (TplEventSource.Log.IsEnabled() || Task.s_asyncDebuggingEnabled) 225TplEventSource log = TplEventSource.Log; 237task.Id, TplEventSource.TaskWaitBehavior.Asynchronous, 253TplEventSource innerEtwLog = TplEventSource.Log; 269EventSource.SetCurrentThreadActivityId(TplEventSource.CreateGuidForTaskID(innerTask.Id), out prevActivityId);
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\YieldAwaitable.cs (6)
76if (TplEventSource.Log.IsEnabled()) 120if (TplEventSource.Log.IsEnabled()) 157TplEventSource.Log.AwaitTaskContinuationScheduled(TaskScheduler.Current.Id, (currentTask != null) ? currentTask.Id : 0, continuationId); 161TplEventSource log = TplEventSource.Log; 168EventSource.SetCurrentThreadActivityId(TplEventSource.CreateGuidForTaskID(((Task<int>)continuationIdTask).Result), out prevActivityId);
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\FutureFactory.cs (22)
528if (TplEventSource.Log.IsEnabled()) 529TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Completed); 650if (TplEventSource.Log.IsEnabled()) 651TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync", 0); 666if (TplEventSource.Log.IsEnabled()) 667TplEventSource.Log.TraceOperationBegin(t.Id, "TaskFactory.FromAsync Callback", 0); 767if (TplEventSource.Log.IsEnabled()) 768TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync: " + beginMethod.GetMethodName(), 0); 789if (TplEventSource.Log.IsEnabled()) 790TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Error); 884if (TplEventSource.Log.IsEnabled()) 885TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync: " + beginMethod.GetMethodName(), 0); 906if (TplEventSource.Log.IsEnabled()) 907TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Error); 1009if (TplEventSource.Log.IsEnabled()) 1010TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync: " + beginMethod.GetMethodName(), 0); 1031if (TplEventSource.Log.IsEnabled()) 1032TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Error); 1142if (TplEventSource.Log.IsEnabled()) 1143TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync: " + beginMethod.GetMethodName(), 0); 1164if (TplEventSource.Log.IsEnabled()) 1165TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Error);
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (53)
853if (TplEventSource.Log.IsEnabled()) 857TplEventSource.Log.TaskScheduled(ts.Id, currentTask == null ? 0 : currentTask.Id, 1174if (TplEventSource.Log.IsEnabled()) 1175TplEventSource.Log.NewID(newId); 1680if (TplEventSource.Log.IsEnabled() && 1685TplEventSource.Log.TraceOperationBegin(this.Id, "Task: " + action.GetMethodName(), 0); 2059if (TplEventSource.Log.IsEnabled()) 2060TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Error); 2075if (TplEventSource.Log.IsEnabled()) 2076TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Canceled); 2084if (TplEventSource.Log.IsEnabled()) 2085TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 2308TplEventSource log = TplEventSource.Log; 2314EventSource.SetCurrentThreadActivityId(TplEventSource.CreateGuidForTaskID(this.Id), out savedActivityID); 2983TplEventSource log = TplEventSource.Log; 2990this.Id, TplEventSource.TaskWaitBehavior.Synchronous, 0); 3313if (TplEventSource.Log.IsEnabled()) 3314TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Canceled); 3459TplEventSource log = TplEventSource.Log; 3619if (TplEventSource.Log.IsEnabled()) 3620TplEventSource.Log.TraceSynchronousWorkEnd(CausalitySynchronousWork.CompletionNotification); 4510TplEventSource log = TplEventSource.Log; 5801if (TplEventSource.Log.IsEnabled()) 5802TplEventSource.Log.TraceOperationBegin(this.Id, "Task.Delay", 0); 5843if (TplEventSource.Log.IsEnabled()) 5844TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 6073if (TplEventSource.Log.IsEnabled()) 6075TplEventSource.Log.TraceOperationBegin(Id, "Task.WhenAll", 0); 6100if (TplEventSource.Log.IsEnabled()) 6102TplEventSource.Log.TraceOperationRelation(Id, CausalityRelation.Join); 6153if (TplEventSource.Log.IsEnabled()) 6155TplEventSource.Log.TraceOperationEnd(Id, AsyncCausalityStatus.Completed); 6416if (TplEventSource.Log.IsEnabled()) 6417TplEventSource.Log.TraceOperationBegin(this.Id, "Task.WhenAll", 0); 6431if (TplEventSource.Log.IsEnabled()) 6432TplEventSource.Log.TraceOperationRelation(this.Id, CausalityRelation.Join); 6486if (TplEventSource.Log.IsEnabled()) 6487TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 6640if (TplEventSource.Log.IsEnabled()) 6642TplEventSource.Log.TraceOperationBegin(this.Id, "Task.WhenAny", 0); 6675if (TplEventSource.Log.IsEnabled()) 6677TplEventSource.Log.TraceOperationRelation(this.Id, CausalityRelation.Choice); 6678TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 7411if (TplEventSource.Log.IsEnabled()) 7412TplEventSource.Log.TraceOperationBegin(this.Id, "Task.Unwrap", 0); 7521if (TplEventSource.Log.IsEnabled()) 7522TplEventSource.Log.TraceOperationRelation(this.Id, CausalityRelation.Join); 7547if (TplEventSource.Log.IsEnabled()) 7548TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed);
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskContinuation.cs (17)
279if (TplEventSource.Log.IsEnabled()) 280TplEventSource.Log.TraceOperationBegin(m_task.Id, "Task.ContinueWith: " + task.m_action!.GetMethodName(), 0); 314if (TplEventSource.Log.IsEnabled() && !continuationTask.IsCanceled) 317TplEventSource.Log.TraceOperationRelation(continuationTask.Id, CausalityRelation.AssignDelegate); 403TplEventSource log = TplEventSource.Log; 421TplEventSource log = TplEventSource.Log; 436Guid activityId = TplEventSource.CreateGuidForTaskID(continuationId); 576TplEventSource log = TplEventSource.Log; 622TplEventSource log = TplEventSource.Log; 634Guid activityId = TplEventSource.CreateGuidForTaskID(m_continuationId); 780if (TplEventSource.Log.IsEnabled()) 814TplEventSource log = TplEventSource.Log;
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskFactory.cs (17)
1558if (TplEventSource.Log.IsEnabled()) 1559TplEventSource.Log.TraceOperationBegin(this.Id, "TaskFactory.ContinueWhenAll", 0); 1567if (TplEventSource.Log.IsEnabled()) 1568TplEventSource.Log.TraceOperationRelation(this.Id, CausalityRelation.Join); 1573if (TplEventSource.Log.IsEnabled()) 1574TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 1628if (TplEventSource.Log.IsEnabled()) 1629TplEventSource.Log.TraceOperationBegin(this.Id, "TaskFactory.ContinueWhenAll<>", 0); 1637if (TplEventSource.Log.IsEnabled()) 1638TplEventSource.Log.TraceOperationRelation(this.Id, CausalityRelation.Join); 1643if (TplEventSource.Log.IsEnabled()) 1644TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 2283if (TplEventSource.Log.IsEnabled()) 2284TplEventSource.Log.TraceOperationBegin(this.Id, "TaskFactory.ContinueWhenAny", 0); 2299if (TplEventSource.Log.IsEnabled()) 2301TplEventSource.Log.TraceOperationRelation(this.Id, CausalityRelation.Choice); 2302TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed);
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskScheduler.cs (2)
187if (TplEventSource.Log.IsEnabled()) 228if (TplEventSource.Log.IsEnabled())
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TplEventSource.cs (1)
43public static readonly TplEventSource Log = new TplEventSource();