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