2 instantiations of PInvokeTargetKey
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (2)
750return _pInvokeTargetNodes.GetOrAdd(new PInvokeTargetKey(methodWithToken, isIndirect: true)); 755return _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 => 719private struct PInvokeTargetKey : IEquatable<PInvokeTargetKey> 730public bool Equals(PInvokeTargetKey other) 737return obj is PInvokeTargetKey other && Equals(other); 746private NodeCache<PInvokeTargetKey, Import> _pInvokeTargetNodes = new NodeCache<PInvokeTargetKey, Import>();