1 instantiation of ByteRefOnStack
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\QCallHandles.cs (1)
66return new ByteRefOnStack(Unsafe.AsPointer(ref byteRef));
14 references to ByteRefOnStack
System.Private.CoreLib (14)
LibraryImports.g.cs (5)
1954private static partial void GetThreadStaticsByIndex(global::System.Runtime.CompilerServices.ByteRefOnStack result, int index, bool gcStatics) 1965static extern unsafe void __PInvoke(global::System.Runtime.CompilerServices.ByteRefOnStack __result_native, int __index_native, int __gcStatics_native); 1974private static partial void GetThreadStaticsByMethodTable(global::System.Runtime.CompilerServices.ByteRefOnStack result, global::System.Runtime.CompilerServices.MethodTable* pMT, bool gcStatics) 1985static extern unsafe void __PInvoke(global::System.Runtime.CompilerServices.ByteRefOnStack __result_native, global::System.Runtime.CompilerServices.MethodTable* __pMT_native, int __gcStatics_native); 3063private static unsafe extern partial void GetFieldDataReference(nint fieldDesc, global::System.Runtime.CompilerServices.ObjectHandleOnStack target, global::System.Runtime.CompilerServices.ByteRefOnStack fieldDataRef);
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\QCallHandles.cs (1)
61internal static ByteRefOnStack Create(ref ByteRef byteRef)
src\System\Runtime\CompilerServices\StaticsHelpers.cs (6)
14private static partial void GetThreadStaticsByIndex(ByteRefOnStack result, int index, [MarshalAs(UnmanagedType.Bool)] bool gcStatics); 17private static partial void GetThreadStaticsByMethodTable(ByteRefOnStack result, MethodTable* pMT, [MarshalAs(UnmanagedType.Bool)] bool gcStatics); 142GetThreadStaticsByIndex(ByteRefOnStack.Create(ref result), index, false); 151GetThreadStaticsByIndex(ByteRefOnStack.Create(ref result), index, true); 160GetThreadStaticsByMethodTable(ByteRefOnStack.Create(ref result), mt, false); 169GetThreadStaticsByMethodTable(ByteRefOnStack.Create(ref result), mt, true);
src\System\RuntimeHandles.cs (2)
1552GetFieldDataReference(((RtFieldInfo)field).GetFieldDesc(), ObjectHandleOnStack.Create(ref target), ByteRefOnStack.Create(ref fieldDataRef)); 1566private static unsafe partial void GetFieldDataReference(IntPtr fieldDesc, ObjectHandleOnStack target, ByteRefOnStack fieldDataRef);