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