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)
54
IReadOnlyList<
InterruptibleRange
> GetInterruptibleRanges(IGCInfoHandle handle) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Contracts\GCInfo\GCInfo_1.cs (1)
37
IReadOnlyList<
InterruptibleRange
> IGCInfo.GetInterruptibleRanges(IGCInfoHandle gcInfoHandle)
Contracts\GCInfo\GCInfoDecoder.cs (3)
131
private List<
InterruptibleRange
> _interruptibleRanges = [];
309
_interruptibleRanges = new List<
InterruptibleRange
>((int)_numInterruptibleRanges);
521
public IReadOnlyList<
InterruptibleRange
> GetInterruptibleRanges()
Contracts\GCInfo\IGCInfoDecoder.cs (1)
14
IReadOnlyList<
InterruptibleRange
> GetInterruptibleRanges();
Contracts\StackWalk\StackWalk_1.cs (1)
261
foreach (
var
range in _target.Contracts.GCInfo.GetInterruptibleRanges(gcHandle))