4 instantiations of GCMemoryRegionData
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\GC\GC_1.cs (4)
719regions.Add(new GCMemoryRegionData 753regions.Add(new GCMemoryRegionData 774regions.Add(new GCMemoryRegionData 926regions.Add(new GCMemoryRegionData
15 references to GCMemoryRegionData
Microsoft.Diagnostics.DataContractReader.Abstractions (3)
Contracts\IGC.cs (3)
166IReadOnlyList<GCMemoryRegionData> GetHandleTableMemoryRegions() => throw new NotImplementedException(); 167IReadOnlyList<GCMemoryRegionData> GetGCBookkeepingMemoryRegions() => throw new NotImplementedException(); 168IReadOnlyList<GCMemoryRegionData> GetGCFreeRegions() => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (8)
Contracts\GC\GC_1.cs (8)
681IReadOnlyList<GCMemoryRegionData> IGC.GetHandleTableMemoryRegions() 683List<GCMemoryRegionData> regions = new(); 736IReadOnlyList<GCMemoryRegionData> IGC.GetGCBookkeepingMemoryRegions() 738List<GCMemoryRegionData> regions = new(); 791IReadOnlyList<GCMemoryRegionData> IGC.GetGCFreeRegions() 793List<GCMemoryRegionData> regions = new(); 907private void AddFreeList(TargetPointer freeListAddr, FreeRegionKind kind, List<GCMemoryRegionData> regions, int heap = 0) 914private void AddSegmentList(TargetPointer start, FreeRegionKind kind, List<GCMemoryRegionData> regions, int heap = 0)
Microsoft.Diagnostics.DataContractReader.Legacy (4)
SOSDacImpl.cs (4)
1731public SOSMemoryEnum(Target target, IReadOnlyList<GCMemoryRegionData> regions, ISOSMemoryEnum? legacyMemoryEnum = null) 6648IReadOnlyList<GCMemoryRegionData> regions = _target.Contracts.GC.GetHandleTableMemoryRegions(); 6673IReadOnlyList<GCMemoryRegionData> regions = _target.Contracts.GC.GetGCBookkeepingMemoryRegions(); 6698IReadOnlyList<GCMemoryRegionData> regions = _target.Contracts.GC.GetGCFreeRegions();