1 instantiation of InterruptibleRange
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\GCInfo\GCInfoDecoder.cs (1)
327_interruptibleRanges.Add(new(rangeStartOffset, rangeStopOffset));
7 references to InterruptibleRange
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IGCInfo.cs (1)
54IReadOnlyList<InterruptibleRange> GetInterruptibleRanges(IGCInfoHandle handle) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Contracts\GCInfo\GCInfo_1.cs (1)
37IReadOnlyList<InterruptibleRange> IGCInfo.GetInterruptibleRanges(IGCInfoHandle gcInfoHandle)
Contracts\GCInfo\GCInfoDecoder.cs (3)
131private List<InterruptibleRange> _interruptibleRanges = []; 309_interruptibleRanges = new List<InterruptibleRange>((int)_numInterruptibleRanges); 521public IReadOnlyList<InterruptibleRange> GetInterruptibleRanges()
Contracts\GCInfo\IGCInfoDecoder.cs (1)
14IReadOnlyList<InterruptibleRange> GetInterruptibleRanges();
Contracts\StackWalk\StackWalk_1.cs (1)
261foreach (var range in _target.Contracts.GCInfo.GetInterruptibleRanges(gcHandle))