12 references to InternalGCCollectionMode
System.Private.CoreLib (12)
_generated\2\LibraryImports.g.cs (1)
15internal static extern partial void RhCollect(int generation, global::System.InternalGCCollectionMode mode, global::Interop.BOOL lowMemoryP);
src\runtime\src\coreclr\nativeaot\Runtime.Base\src\System\Runtime\__Finalizer.cs (1)
42InternalCalls.RhCollect(0, InternalGCCollectionMode.Blocking, lowMemoryP: Interop.BOOL.TRUE);
src\runtime\src\coreclr\nativeaot\Runtime.Base\src\System\Runtime\InternalCalls.cs (1)
63internal static extern void RhCollect(int generation, InternalGCCollectionMode mode, Interop.BOOL lowMemoryP = Interop.BOOL.FALSE);
System\GC.NativeAot.cs (8)
130RuntimeImports.RhCollect(-1, InternalGCCollectionMode.Blocking); 162iInternalModes |= (int)InternalGCCollectionMode.Optimized; 166iInternalModes |= (int)InternalGCCollectionMode.Aggressive; 183iInternalModes |= (int)InternalGCCollectionMode.Compacting; 188iInternalModes |= (int)InternalGCCollectionMode.Blocking; 192iInternalModes |= (int)InternalGCCollectionMode.NonBlocking; 195RuntimeImports.RhCollect(generation, (InternalGCCollectionMode)iInternalModes, lowMemoryPressure ? Interop.BOOL.TRUE : Interop.BOOL.FALSE); 642RuntimeImports.RhCollect(2, InternalGCCollectionMode.NonBlocking);
System\Runtime\RuntimeImports.cs (1)
58internal static partial void RhCollect(int generation, InternalGCCollectionMode mode, Interop.BOOL lowMemoryP = Interop.BOOL.FALSE);