1 implementation of GetNativeCode
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\CodeVersions_1.cs (1)
167TargetCodePointer ICodeVersions.GetNativeCode(NativeCodeVersionHandle codeVersionHandle)
7 references to GetNativeCode
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
Contracts\Extensions\ICodeVersionsExtensions.cs (2)
20if (cv.GetNativeCode(nativeCodeVersionHandle) != TargetCodePointer.Null) 22return cv.GetNativeCode(nativeCodeVersionHandle);
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\DebugInfo\DebugInfo_2.cs (1)
135TargetCodePointer nativeCodeStart = cv.GetNativeCode(ncvh);
Microsoft.Diagnostics.DataContractReader.Legacy (4)
Dbi\DacDbiImpl.cs (1)
5480pCode = ncvh.Valid ? cv.GetNativeCode(ncvh) : TargetCodePointer.Null;
SOSDacImpl.cs (3)
2297nativeCodeAddr = nativeCodeContract.GetNativeCode(requestedNativeCodeVersion); 2514TargetCodePointer nativeCode = cv.GetNativeCode(nativeCodeVersion); 5322TargetCodePointer nativeCode = _target.Contracts.PrecodeStubs.GetInterpreterCodeFromInterpreterPrecodeIfPresent(codeVersions.GetNativeCode(nativeCodeVersionHandle));