2 instantiations of PInvokeTargetKey
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (2)
744
return _pInvokeTargetNodes.GetOrAdd(new
PInvokeTargetKey
(methodWithToken, isIndirect: true));
749
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 =>
713
private struct PInvokeTargetKey : IEquatable<
PInvokeTargetKey
>
724
public bool Equals(
PInvokeTargetKey
other)
731
return obj is
PInvokeTargetKey
other && Equals(other);
740
private NodeCache<
PInvokeTargetKey
, Import> _pInvokeTargetNodes = new NodeCache<
PInvokeTargetKey
, Import>();