1 instantiation of FunctionPointerCache
System.Private.CoreLib (1)
src\System\RuntimeType.CoreCLR.cs (1)
1483return new(RuntimeTypeHandle.GetArgumentTypesFromFunctionPointer(type));
5 references to FunctionPointerCache
System.Private.CoreLib (5)
src\System\RuntimeType.CoreCLR.cs (4)
1471internal sealed class FunctionPointerCache : IGenericCacheEntry<FunctionPointerCache> 1480public static FunctionPointerCache Create(RuntimeType type) 1486public static ref FunctionPointerCache? GetStorageRef(RuntimeType.CompositeCacheEntry compositeEntry) => ref compositeEntry._functionPointerCache; 1493return m_runtimeType.GetOrCreateCacheEntry<FunctionPointerCache>().FunctionPointerReturnAndParameterTypes;
src\System\RuntimeType.GenericCache.cs (1)
22internal RuntimeTypeCache.FunctionPointerCache? _functionPointerCache;