4 instantiations of GCMemoryRegionData
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\GC\GC_1.cs (4)
721regions.Add(new GCMemoryRegionData 755regions.Add(new GCMemoryRegionData 776regions.Add(new GCMemoryRegionData 930regions.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)
683IReadOnlyList<GCMemoryRegionData> IGC.GetHandleTableMemoryRegions() 685List<GCMemoryRegionData> regions = new(); 738IReadOnlyList<GCMemoryRegionData> IGC.GetGCBookkeepingMemoryRegions() 740List<GCMemoryRegionData> regions = new(); 793IReadOnlyList<GCMemoryRegionData> IGC.GetGCFreeRegions() 795List<GCMemoryRegionData> regions = new(); 911private void AddFreeList(TargetPointer freeListAddr, FreeRegionKind kind, List<GCMemoryRegionData> regions, int heap = 0) 918private void AddSegmentList(TargetPointer start, FreeRegionKind kind, List<GCMemoryRegionData> regions, int heap = 0)
Microsoft.Diagnostics.DataContractReader.Legacy (4)
SOSDacImpl.cs (4)
1732public SOSMemoryEnum(Target target, IReadOnlyList<GCMemoryRegionData> regions, ISOSMemoryEnum? legacyMemoryEnum = null) 6631IReadOnlyList<GCMemoryRegionData> regions = _target.Contracts.GC.GetHandleTableMemoryRegions(); 6656IReadOnlyList<GCMemoryRegionData> regions = _target.Contracts.GC.GetGCBookkeepingMemoryRegions(); 6681IReadOnlyList<GCMemoryRegionData> regions = _target.Contracts.GC.GetGCFreeRegions();