1 write to _snapshots
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\DiagnosticAnalyzer\PerformanceQueue.cs (1)
34
_snapshots
= new LinkedList<Snapshot>();
8 references to _snapshots
Microsoft.CodeAnalysis.Remote.ServiceHub (8)
Services\DiagnosticAnalyzer\PerformanceQueue.cs (8)
38
public int Count =>
_snapshots
.Count;
41
if (
_snapshots
.Count < _maxSampleSize)
43
_snapshots
.AddLast(new Snapshot(rawData, unitCount));
48
var first =
_snapshots
.First;
49
_snapshots
.RemoveFirst();
53
_snapshots
.AddLast(first);
79
foreach (var snapshot in
_snapshots
)
89
foreach (var snapshot in
_snapshots
)