1 instantiation of OffsetMapping
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\DebugInfo\DebugInfoHelpers.cs (1)
96yield return new OffsetMapping()
14 references to OffsetMapping
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IDebugInfo.cs (1)
123IEnumerable<OffsetMapping> GetMethodNativeMap(TargetCodePointer pCode, bool preferUninstrumented, out uint codeOffset) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (5)
Contracts\DebugInfo\DebugInfo_1.cs (2)
35IEnumerable<OffsetMapping> IDebugInfo.GetMethodNativeMap(TargetCodePointer pCode, bool preferUninstrumented, out uint codeOffset) 51private IEnumerable<OffsetMapping> RestoreBoundaries(TargetPointer debugInfo, bool hasFlagByte, bool preferUninstrumented)
Contracts\DebugInfo\DebugInfo_2.cs (2)
42IEnumerable<OffsetMapping> IDebugInfo.GetMethodNativeMap(TargetCodePointer pCode, bool preferUninstrumented, out uint codeOffset) 97private IEnumerable<OffsetMapping> RestoreBoundaries(TargetPointer debugInfo, bool preferUninstrumented)
Contracts\DebugInfo\DebugInfoHelpers.cs (1)
50internal static IEnumerable<OffsetMapping> DoBounds(NativeReader nativeReader, uint version)
Microsoft.Diagnostics.DataContractReader.Legacy (8)
ClrDataMethodInstance.cs (5)
214IEnumerable<OffsetMapping> mapEnumerable = _target.Contracts.DebugInfo.GetMethodNativeMap( 219List<OffsetMapping> map = [.. mapEnumerable]; 310IEnumerable<OffsetMapping> mapEnumerable = _target.Contracts.DebugInfo.GetMethodNativeMap( 315List<OffsetMapping> map = [.. mapEnumerable]; 322OffsetMapping entry = map[i];
Dbi\DacDbiImpl.cs (2)
1583IEnumerable<Contracts.OffsetMapping> sequencePoints = debugInfo.GetMethodNativeMap(codePointer, preferUninstrumented: true, out _); 1584foreach (Contracts.OffsetMapping mapping in sequencePoints)
Dbi\DacDbiImpl.NativeCodeInfo.cs (1)
40internal static DbiOffsetMapping ConvertToDbiOffsetMapping(Contracts.OffsetMapping mapping)