2 implementations of TryGetGenericContextStorage
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\GCInfo\GCInfoDecoder.cs (1)
558public bool TryGetGenericContextStorage(GenericContextLoc contextKind, uint instructionOffset, out GenericContextStorage storage)
Contracts\GCInfo\X86\GCInfo.cs (1)
457bool IGCInfoDecoder.TryGetGenericContextStorage(GenericContextLoc contextKind, uint instructionOffset, out GenericContextStorage storage)
2 references to TryGetGenericContextStorage
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\GCInfo\GCInfo_1.cs (1)
76return handle.TryGetGenericContextStorage(contextKind, instructionOffset, out storage);
Contracts\GCInfo\GCInfoX86_1.cs (1)
56=> AssertCorrectHandle(gcInfoHandle).TryGetGenericContextStorage(contextKind, instructionOffset, out storage);