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