6 instantiations of GCHeapSegmentInfo
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Contracts\GC\GC_1.cs (6)
399yield return new GCHeapSegmentInfo(seg.Mem, seg.Allocated, type); 403yield return new GCHeapSegmentInfo(seg.Mem, seg.Allocated, GCSegmentClassification.Gen1); 409yield return new GCHeapSegmentInfo(seg.Mem, end, GCSegmentClassification.Gen0); 426yield return new GCHeapSegmentInfo(seg.Mem, end, type); 433yield return new GCHeapSegmentInfo(seg.Mem, seg.Allocated, GCSegmentClassification.LOH); 439yield return new GCHeapSegmentInfo(seg.Mem, seg.Allocated, GCSegmentClassification.POH);
8 references to GCHeapSegmentInfo
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
Contracts\IGC.cs (2)
174IEnumerable<GCHeapSegmentInfo> EnumerateHeapSegments(GCHeapData heapData) => throw new NotImplementedException(); 180GCHeapSegmentInfo segment) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\GC\GC_1.cs (2)
378IEnumerable<GCHeapSegmentInfo> IGC.EnumerateHeapSegments(GCHeapData heapData) 460GCHeapSegmentInfo segment)
Microsoft.Diagnostics.DataContractReader.Legacy (4)
Dbi\DacDbiImpl.cs (1)
3400foreach (GCHeapSegmentInfo raw in gc.EnumerateHeapSegments(heapData))
Dbi\Helpers\HeapWalk.cs (3)
44foreach ((GCHeapSegmentInfo seg, GCHeapData _) in EnumerateAllSegments()) 109private IEnumerable<(GCHeapSegmentInfo Segment, GCHeapData Heap)> EnumerateAllSegments() 115foreach (GCHeapSegmentInfo seg in _gc.EnumerateHeapSegments(heap))