1 instantiation of TplEventSource
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TplEventSource.cs (1)
62public static readonly TplEventSource Log = new TplEventSource();
157 references to TplEventSource
System.Private.CoreLib (157)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ActivityTracker.cs (6)
56if (useTplSource && TplEventSource.Log.IsEnabled(EventLevel.Informational, TplEventSource.Keywords.TasksFlowActivityIds)) 67TplEventSource? log = useTplSource ? TplEventSource.Log : null; 135TplEventSource? log = useTplSource ? TplEventSource.Log : null;
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
603TplEventSource.Log?.SetActivityId(activityId); 698TplEventSource.Log?.SetActivityId(activityId);
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncInstrumentation.cs (1)
104_ = TplEventSource.Log; // Touch TplEventSource to trigger static constructor which will initialize TPL flags if EventSource is supported.
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\Task.cs (53)
1012if (TplEventSource.Log.IsEnabled()) 1016TplEventSource.Log.TaskScheduled(ts.Id, currentTask == null ? 0 : currentTask.Id, 1333if (TplEventSource.Log.IsEnabled()) 1334TplEventSource.Log.NewID(newId); 1839if (TplEventSource.Log.IsEnabled() && 1844TplEventSource.Log.TraceOperationBegin(this.Id, "Task: " + action.GetMethodName(), 0); 2218if (TplEventSource.Log.IsEnabled()) 2219TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Error); 2234if (TplEventSource.Log.IsEnabled()) 2235TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Canceled); 2243if (TplEventSource.Log.IsEnabled()) 2244TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 2467TplEventSource log = TplEventSource.Log; 2473EventSource.SetCurrentThreadActivityId(TplEventSource.CreateGuidForTaskID(this.Id), out savedActivityID); 3139TplEventSource log = TplEventSource.Log; 3146this.Id, TplEventSource.TaskWaitBehavior.Synchronous, 0); 3478if (TplEventSource.Log.IsEnabled()) 3479TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Canceled); 3624TplEventSource log = TplEventSource.Log; 3784if (TplEventSource.Log.IsEnabled()) 3785TplEventSource.Log.TraceSynchronousWorkEnd(CausalitySynchronousWork.CompletionNotification); 4675TplEventSource log = TplEventSource.Log; 5948if (TplEventSource.Log.IsEnabled()) 5949TplEventSource.Log.TraceOperationBegin(this.Id, "Task.Delay", 0); 5990if (TplEventSource.Log.IsEnabled()) 5991TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 6220if (TplEventSource.Log.IsEnabled()) 6222TplEventSource.Log.TraceOperationBegin(Id, "Task.WhenAll", 0); 6247if (TplEventSource.Log.IsEnabled()) 6249TplEventSource.Log.TraceOperationRelation(Id, CausalityRelation.Join); 6300if (TplEventSource.Log.IsEnabled()) 6302TplEventSource.Log.TraceOperationEnd(Id, AsyncCausalityStatus.Completed); 6563if (TplEventSource.Log.IsEnabled()) 6564TplEventSource.Log.TraceOperationBegin(this.Id, "Task.WhenAll", 0); 6578if (TplEventSource.Log.IsEnabled()) 6579TplEventSource.Log.TraceOperationRelation(this.Id, CausalityRelation.Join); 6633if (TplEventSource.Log.IsEnabled()) 6634TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 6787if (TplEventSource.Log.IsEnabled()) 6789TplEventSource.Log.TraceOperationBegin(this.Id, "Task.WhenAny", 0); 6822if (TplEventSource.Log.IsEnabled()) 6824TplEventSource.Log.TraceOperationRelation(this.Id, CausalityRelation.Choice); 6825TplEventSource.Log.TraceOperationEnd(this.Id, AsyncCausalityStatus.Completed); 7558if (TplEventSource.Log.IsEnabled()) 7559TplEventSource.Log.TraceOperationBegin(this.Id, "Task.Unwrap", 0); 7668if (TplEventSource.Log.IsEnabled()) 7669TplEventSource.Log.TraceOperationRelation(this.Id, CausalityRelation.Join); 7694if (TplEventSource.Log.IsEnabled()) 7695TplEventSource.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\TaskFactory_T.cs (22)
529if (TplEventSource.Log.IsEnabled()) 530TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Completed); 651if (TplEventSource.Log.IsEnabled()) 652TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync", 0); 667if (TplEventSource.Log.IsEnabled()) 668TplEventSource.Log.TraceOperationBegin(t.Id, "TaskFactory.FromAsync Callback", 0); 770if (TplEventSource.Log.IsEnabled()) 771TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync: " + beginMethod.GetMethodName(), 0); 792if (TplEventSource.Log.IsEnabled()) 793TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Error); 887if (TplEventSource.Log.IsEnabled()) 888TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync: " + beginMethod.GetMethodName(), 0); 909if (TplEventSource.Log.IsEnabled()) 910TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Error); 1012if (TplEventSource.Log.IsEnabled()) 1013TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync: " + beginMethod.GetMethodName(), 0); 1034if (TplEventSource.Log.IsEnabled()) 1035TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Error); 1145if (TplEventSource.Log.IsEnabled()) 1146TplEventSource.Log.TraceOperationBegin(promise.Id, "TaskFactory.FromAsync: " + beginMethod.GetMethodName(), 0); 1167if (TplEventSource.Log.IsEnabled()) 1168TplEventSource.Log.TraceOperationEnd(promise.Id, AsyncCausalityStatus.Error);
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)
62public static readonly TplEventSource Log = new TplEventSource();
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (8)
1112TplEventSource.Log.TraceOperationBegin(task.Id, "System.Runtime.CompilerServices.AsyncHelpers+RuntimeAsyncTask", 0); 1117TplEventSource.Log.TraceSynchronousWorkBegin(id, CausalitySynchronousWork.Execution); 1127TplEventSource.Log.TraceSynchronousWorkEnd(CausalitySynchronousWork.Execution); 1133TplEventSource.Log.TraceSynchronousWorkEnd(CausalitySynchronousWork.Execution); 1141TplEventSource.Log.TraceOperationEnd(task.Id, AsyncCausalityStatus.Completed); 1142TplEventSource.Log.TraceSynchronousWorkEnd(CausalitySynchronousWork.Execution); 1151TplEventSource.Log.TraceOperationEnd(task.Id, ex is OperationCanceledException ? AsyncCausalityStatus.Canceled : AsyncCausalityStatus.Error); 1152TplEventSource.Log.TraceSynchronousWorkEnd(CausalitySynchronousWork.Execution);