7 references to OpenFlags
System.IO.MemoryMappedFiles (7)
src\libraries\Common\src\Interop\Unix\System.Native\Interop.Open.cs (1)
12internal static partial SafeFileHandle Open(string filename, OpenFlags flags, int mode);
src\libraries\Common\src\Interop\Unix\System.Native\Interop.ShmOpen.cs (1)
12internal static partial SafeFileHandle ShmOpen(string name, OpenFlags flags, int mode);
System\IO\MemoryMappedFiles\MemoryMappedFile.Unix.cs (5)
175Interop.Sys.OpenFlags flags = (protections & Interop.Sys.MemoryMappedProtections.PROT_WRITE) != 0 ? 176Interop.Sys.OpenFlags.O_RDWR : 177Interop.Sys.OpenFlags.O_RDONLY; 178flags |= Interop.Sys.OpenFlags.O_CREAT | Interop.Sys.OpenFlags.O_EXCL; // CreateNew