1 instantiation of SafeMemoryMappedFileHandle
System.IO.MemoryMappedFiles (1)
System\IO\MemoryMappedFiles\MemoryMappedFile.Unix.cs (1)
109return new SafeMemoryMappedFileHandle(fileHandle, ownsFileStream, inheritability, access, options, capacity);
17 references to SafeMemoryMappedFileHandle
netstandard (1)
netstandard.cs (1)
10[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(Microsoft.Win32.SafeHandles.SafeMemoryMappedFileHandle))]
System.Core (1)
System.Core.cs (1)
4[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(Microsoft.Win32.SafeHandles.SafeMemoryMappedFileHandle))]
System.IO.MemoryMappedFiles (15)
System\IO\MemoryMappedFiles\MemoryMappedFile.cs (10)
12private readonly SafeMemoryMappedFileHandle _handle; 18private MemoryMappedFile(SafeMemoryMappedFileHandle handle) 28private MemoryMappedFile(SafeMemoryMappedFileHandle handle, SafeFileHandle fileHandle, bool leaveOpen) 75SafeMemoryMappedFileHandle handle = OpenCore(mapName, inheritability, desiredAccessRights, false); 153SafeMemoryMappedFileHandle? handle; 231SafeMemoryMappedFileHandle handle = CreateCore(fileHandle, mapName, inheritability, 264SafeMemoryMappedFileHandle handle = CreateCore(fileHandle, mapName, inheritability, 321SafeMemoryMappedFileHandle handle = CreateCore(null, mapName, inheritability, access, options, capacity, -1); 373SafeMemoryMappedFileHandle handle; 478public SafeMemoryMappedFileHandle SafeMemoryMappedFileHandle
System\IO\MemoryMappedFiles\MemoryMappedFile.Unix.cs (4)
49private static SafeMemoryMappedFileHandle CreateCore( 115private static SafeMemoryMappedFileHandle CreateOrOpenCore( 131private static SafeMemoryMappedFileHandle OpenCore( 142private static SafeMemoryMappedFileHandle OpenCore(
System\IO\MemoryMappedFiles\MemoryMappedView.Unix.cs (1)
12SafeMemoryMappedFileHandle memMappedFileHandle, MemoryMappedFileAccess access,