16 references to ActionInfo
Microsoft.CodeAnalysis.EditorFeatures (16)
IntelliSense\AsyncCompletion\AsyncCompletionLogger.cs (16)
12private static readonly CountLogAggregator<ActionInfo> s_countLogAggregator = new(); 13private static readonly StatisticLogAggregator<ActionInfo> s_statisticLogAggregator = new(); 14private 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); 47s_statisticLogAggregator.AddDataPoint(ActionInfo.SourceInitializationTicks, elapsed); 48s_histogramLogAggregator.LogTime(ActionInfo.SourceInitializationTicks, elapsed); 53var key = isCanceled 54? ActionInfo.SourceGetContextCanceledTicks 55: ActionInfo.SourceGetContextCompletedTicks; 63s_statisticLogAggregator.AddDataPoint(ActionInfo.ItemManagerSortTicks, elapsed); 64s_histogramLogAggregator.LogTime(ActionInfo.ItemManagerSortTicks, elapsed); 69var key = isCanceled 70? ActionInfo.ItemManagerUpdateCanceledTicks 71: ActionInfo.ItemManagerUpdateCompletedTicks;