8 references to RawErrno
System.Console (8)
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (2)
146return Interop.Sys.StrError(RawErrno); 151return $"RawErrno: {RawErrno} Error: {Error} GetErrorMessage: {GetErrorMessage()}"; // No localization required; text is member names used for debugging purposes
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (4)
155new IOException(SR.Format(SR.IO_SharingViolation_File, path), errorInfo.RawErrno) : 156new IOException(SR.IO_SharingViolation_NoFileName, errorInfo.RawErrno); 167return new IOException(SR.Format(SR.IO_FileExists_Name, path), errorInfo.RawErrno); 187string.IsNullOrEmpty(path) ? msg : $"{msg} : '{path}'", errorInfo.RawErrno);
src\runtime\src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (1)
94throw new IOException(errorInfo.GetErrorMessage(), errorInfo.RawErrno);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\PersistedFiles.Unix.cs (1)
132throw new IOException(errorInfo.GetErrorMessage(), errorInfo.RawErrno);