4 instantiations of GCMemoryRegionData
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\GC\GC_1.cs (4)
624regions.Add(new GCMemoryRegionData 658regions.Add(new GCMemoryRegionData 679regions.Add(new GCMemoryRegionData 833regions.Add(new GCMemoryRegionData
15 references to GCMemoryRegionData
Microsoft.Diagnostics.DataContractReader.Abstractions (3)
Contracts\IGC.cs (3)
168IReadOnlyList<GCMemoryRegionData> GetHandleTableMemoryRegions() => throw new NotImplementedException(); 169IReadOnlyList<GCMemoryRegionData> GetGCBookkeepingMemoryRegions() => throw new NotImplementedException(); 170IReadOnlyList<GCMemoryRegionData> GetGCFreeRegions() => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (8)
Contracts\GC\GC_1.cs (8)
586IReadOnlyList<GCMemoryRegionData> IGC.GetHandleTableMemoryRegions() 588List<GCMemoryRegionData> regions = new(); 641IReadOnlyList<GCMemoryRegionData> IGC.GetGCBookkeepingMemoryRegions() 643List<GCMemoryRegionData> regions = new(); 696IReadOnlyList<GCMemoryRegionData> IGC.GetGCFreeRegions() 698List<GCMemoryRegionData> regions = new(); 814private void AddFreeList(TargetPointer freeListAddr, FreeRegionKind kind, List<GCMemoryRegionData> regions, int heap = 0) 821private void AddSegmentList(TargetPointer start, FreeRegionKind kind, List<GCMemoryRegionData> regions, int heap = 0)
Microsoft.Diagnostics.DataContractReader.Legacy (4)
SOSDacImpl.cs (4)
1754public SOSMemoryEnum(Target target, IReadOnlyList<GCMemoryRegionData> regions, ISOSMemoryEnum? legacyMemoryEnum = null) 6643IReadOnlyList<GCMemoryRegionData> regions = _target.Contracts.GC.GetHandleTableMemoryRegions(); 6668IReadOnlyList<GCMemoryRegionData> regions = _target.Contracts.GC.GetGCBookkeepingMemoryRegions(); 6693IReadOnlyList<GCMemoryRegionData> regions = _target.Contracts.GC.GetGCFreeRegions();