6 references to RhHandleAlloc
System.Private.CoreLib (6)
Internal\Runtime\Augments\RuntimeAugments.cs (1)
731return RuntimeImports.RhHandleAlloc(value, type);
src\runtime\src\coreclr\nativeaot\Common\src\Internal\Runtime\CompilerHelpers\StartupCodeHelpers.cs (1)
42s_moduleGCStaticsSpines = RuntimeImports.RhHandleAlloc(gcStaticBaseSpines, GCHandleType.Normal);
System\Runtime\InteropServices\GCHandle.NativeAot.cs (1)
10internal static IntPtr InternalAlloc(object value, GCHandleType type) => RuntimeImports.RhHandleAlloc(value, type);
System\Runtime\RuntimeImports.cs (1)
267return RhHandleAlloc(value, (GCHandleType)HNDTYPE_REFCOUNTED);
System\RuntimeType.NativeAot.cs (2)
35_runtimeTypeInfoHandle = RuntimeImports.RhHandleAlloc(runtimeTypeInfo, GCHandleType.Normal); 77IntPtr tempHandle = RuntimeImports.RhHandleAlloc(runtimeTypeInfo, GCHandleType.Weak);