16 references to ActionInfo
Microsoft.CodeAnalysis.EditorFeatures (16)
IntelliSense\AsyncCompletion\AsyncCompletionLogger.cs (16)
12
private static readonly CountLogAggregator<
ActionInfo
> s_countLogAggregator = new();
13
private static readonly StatisticLogAggregator<
ActionInfo
> s_statisticLogAggregator = new();
14
private static readonly HistogramLogAggregator<
ActionInfo
> s_histogramLogAggregator = new(25, 500);
37
=> s_countLogAggregator.IncreaseCount(
ActionInfo
.SessionWithTypeImportCompletionEnabled);
40
=> s_countLogAggregator.IncreaseCount(
ActionInfo
.SessionWithDelayedImportCompletionIncludedInUpdate);
43
=> s_countLogAggregator.IncreaseCount(
ActionInfo
.ExpanderUsageCount);
47
s_statisticLogAggregator.AddDataPoint(
ActionInfo
.SourceInitializationTicks, elapsed);
48
s_histogramLogAggregator.LogTime(
ActionInfo
.SourceInitializationTicks, elapsed);
53
var
key = isCanceled
54
?
ActionInfo
.SourceGetContextCanceledTicks
55
:
ActionInfo
.SourceGetContextCompletedTicks;
63
s_statisticLogAggregator.AddDataPoint(
ActionInfo
.ItemManagerSortTicks, elapsed);
64
s_histogramLogAggregator.LogTime(
ActionInfo
.ItemManagerSortTicks, elapsed);
69
var
key = isCanceled
70
?
ActionInfo
.ItemManagerUpdateCanceledTicks
71
:
ActionInfo
.ItemManagerUpdateCompletedTicks;