2 instantiations of PInvokeTargetKey
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (2)
744return _pInvokeTargetNodes.GetOrAdd(new PInvokeTargetKey(methodWithToken, isIndirect: true)); 749return _pInvokeTargetNodes.GetOrAdd(new PInvokeTargetKey(methodWithToken, isIndirect: false));
6 references to PInvokeTargetKey
ILCompiler.ReadyToRun (6)
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (6)
179_pInvokeTargetNodes = new NodeCache<PInvokeTargetKey, Import>(key => 713private struct PInvokeTargetKey : IEquatable<PInvokeTargetKey> 724public bool Equals(PInvokeTargetKey other) 731return obj is PInvokeTargetKey other && Equals(other); 740private NodeCache<PInvokeTargetKey, Import> _pInvokeTargetNodes = new NodeCache<PInvokeTargetKey, Import>();