1 write to _snapshots
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\DiagnosticAnalyzer\PerformanceQueue.cs (1)
33
_snapshots
= new LinkedList<Snapshot>();
8 references to _snapshots
Microsoft.CodeAnalysis.Remote.ServiceHub (8)
Services\DiagnosticAnalyzer\PerformanceQueue.cs (8)
37
public int Count =>
_snapshots
.Count;
40
if (
_snapshots
.Count < _maxSampleSize)
42
_snapshots
.AddLast(new Snapshot(rawData, unitCount));
47
var first =
_snapshots
.First;
48
_snapshots
.RemoveFirst();
52
_snapshots
.AddLast(first);
78
foreach (var snapshot in
_snapshots
)
88
foreach (var snapshot in
_snapshots
)