78 references to Sys
System.IO.MemoryMappedFiles (78)
Microsoft\Win32\SafeMemoryMappedViewHandle.Unix.cs (1)
20return Interop.Sys.MUnmap(addr, base.ByteLength) == 0;
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (3)
123_error = Interop.Sys.ConvertErrorPlatformToPal(errno); 140get { return _rawErrno == -1 ? (_rawErrno = Interop.Sys.ConvertErrorPalToPlatform(_error)) : _rawErrno; } 145return Interop.Sys.StrError(RawErrno);
src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (3)
42ThrowExceptionForIoErrno(Sys.GetLastErrorInfo(), path, isDirError); 53ThrowExceptionForIoErrno(Sys.GetLastErrorInfo(), path: null, isDirError: false); 99Exception e = Interop.GetExceptionForIoErrno(Sys.GetLastErrorInfo(), path, isDirError);
System\IO\MemoryMappedFiles\MemoryMappedFile.Unix.cs (39)
39Interop.CheckIo(Interop.Sys.FStat(fileHandle, out Interop.Sys.FileStatus status)); 40return (status.Mode & Interop.Sys.FileTypes.S_IFREG) != 0; 79Interop.CheckIo(Interop.Sys.FTruncate(fileHandle, capacity)); 101Interop.Sys.MemoryMappedProtections protections = MemoryMappedView.GetProtections(access, forVerification: false); 102if ((protections & Interop.Sys.MemoryMappedProtections.PROT_WRITE) != 0 && capacity > 0) 155private static FileAccess TranslateProtectionsToFileAccess(Interop.Sys.MemoryMappedProtections protections) 158(protections & (Interop.Sys.MemoryMappedProtections.PROT_READ | Interop.Sys.MemoryMappedProtections.PROT_WRITE)) != 0 ? FileAccess.ReadWrite : 159(protections & (Interop.Sys.MemoryMappedProtections.PROT_WRITE)) != 0 ? FileAccess.Write : 163private static SafeFileHandle CreateSharedBackingObject(Interop.Sys.MemoryMappedProtections protections, long capacity, HandleInheritability inheritability) 165return Interop.Sys.IsMemfdSupported ? 172Interop.Sys.MemoryMappedProtections protections, long capacity, HandleInheritability inheritability) 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 182if ((protections & Interop.Sys.MemoryMappedProtections.PROT_READ) != 0) 184if ((protections & Interop.Sys.MemoryMappedProtections.PROT_WRITE) != 0) 186if ((protections & Interop.Sys.MemoryMappedProtections.PROT_EXEC) != 0) 195fd = Interop.Sys.ShmOpen(mapName, flags, (int)perms); // Create the shared memory object. 199Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo(); 227Interop.CheckIo(Interop.Sys.ShmUnlink(mapName)); 233Interop.CheckIo(Interop.Sys.FTruncate(fd, capacity)); 237Interop.Sys.Fcntl.SetFD(fd, 0) == -1) 239throw Interop.GetExceptionForIoErrno(Interop.Sys.GetLastErrorInfo()); 274Interop.Sys.MemoryMappedProtections protections, long capacity, HandleInheritability inheritability) 276int isReadonly = ((protections & Interop.Sys.MemoryMappedProtections.PROT_READ) != 0 && 277(protections & Interop.Sys.MemoryMappedProtections.PROT_WRITE) == 0) ? 1 : 0; 279SafeFileHandle fd = Interop.Sys.MemfdCreate(GenerateMapName(), isReadonly); 282Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo(); 294Interop.CheckIo(Interop.Sys.FTruncate(fd, capacity)); 298Interop.Sys.Fcntl.SetFD(fd, 0) == -1) 300throw Interop.GetExceptionForIoErrno(Interop.Sys.GetLastErrorInfo()); 312private static SafeFileHandle CreateSharedBackingObjectUsingFile(Interop.Sys.MemoryMappedProtections protections, long capacity, HandleInheritability inheritability) 327Interop.CheckIo(Interop.Sys.Unlink(path)); 328Interop.CheckIo(Interop.Sys.FTruncate(fileHandle, capacity), path);
System\IO\MemoryMappedFiles\MemoryMappedView.Unix.cs (32)
38long pageSize = Interop.Sys.SysConf(Interop.Sys.SysConfName._SC_PAGESIZE); 45Interop.Sys.MemoryMappedFlags flags = 47Interop.Sys.MemoryMappedFlags.MAP_PRIVATE : 48Interop.Sys.MemoryMappedFlags.MAP_SHARED; 62flags |= Interop.Sys.MemoryMappedFlags.MAP_ANONYMOUS; 69Interop.Sys.MemoryMappedProtections viewProtForVerification = GetProtections(access, forVerification: true); 70Interop.Sys.MemoryMappedProtections mapProtForVerification = GetProtections(memMappedFileHandle._access, forVerification: true); 77Interop.Sys.MemoryMappedProtections viewProtForCreation = GetProtections(access, forVerification: false); 83addr = Interop.Sys.MMap( 98addr = Interop.Sys.MMap( 102flags | Interop.Sys.MemoryMappedFlags.MAP_ANONYMOUS, 110throw Interop.GetExceptionForIoErrno(Interop.Sys.GetLastErrorInfo()); 139int result = Interop.Sys.MSync( 141Interop.Sys.MemoryMappedSyncFlags.MS_SYNC | Interop.Sys.MemoryMappedSyncFlags.MS_INVALIDATE); 144throw Interop.GetExceptionForIoErrno(Interop.Sys.GetLastErrorInfo()); 163Interop.Sys.MAdvise(addr, length, Interop.Sys.MemoryAdvice.MADV_DONTFORK); 175internal static Interop.Sys.MemoryMappedProtections GetProtections( 182return Interop.Sys.MemoryMappedProtections.PROT_READ; 185return Interop.Sys.MemoryMappedProtections.PROT_WRITE; 189Interop.Sys.MemoryMappedProtections.PROT_READ | 190Interop.Sys.MemoryMappedProtections.PROT_WRITE; 194Interop.Sys.MemoryMappedProtections.PROT_READ | 195Interop.Sys.MemoryMappedProtections.PROT_EXEC; 199Interop.Sys.MemoryMappedProtections.PROT_READ | 200Interop.Sys.MemoryMappedProtections.PROT_WRITE | 201Interop.Sys.MemoryMappedProtections.PROT_EXEC; 205Interop.Sys.MemoryMappedProtections.PROT_READ : 206Interop.Sys.MemoryMappedProtections.PROT_READ | Interop.Sys.MemoryMappedProtections.PROT_WRITE;