6 instantiations of GCHeapSegmentInfo
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Contracts\GC\GC_1.cs (6)
387yield return new GCHeapSegmentInfo(seg.Mem, seg.Allocated, type); 391yield return new GCHeapSegmentInfo(seg.Mem, seg.Allocated, GCSegmentClassification.Gen1); 397yield return new GCHeapSegmentInfo(seg.Mem, end, GCSegmentClassification.Gen0); 414yield return new GCHeapSegmentInfo(seg.Mem, end, type); 421yield return new GCHeapSegmentInfo(seg.Mem, seg.Allocated, GCSegmentClassification.LOH); 427yield return new GCHeapSegmentInfo(seg.Mem, seg.Allocated, GCSegmentClassification.POH);
3 references to GCHeapSegmentInfo
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IGC.cs (1)
174IEnumerable<GCHeapSegmentInfo> EnumerateHeapSegments(GCHeapData heapData) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\GC\GC_1.cs (1)
366IEnumerable<GCHeapSegmentInfo> IGC.EnumerateHeapSegments(GCHeapData heapData)
Microsoft.Diagnostics.DataContractReader.Legacy (1)
Dbi\DacDbiImpl.cs (1)
2230foreach (GCHeapSegmentInfo raw in gc.EnumerateHeapSegments(heapData))