29 references to Error
System.IO.Pipes (29)
_generated\0\LibraryImports.g.cs (2)
7internal static extern partial global::Interop.Error ConvertErrorPlatformToPal(int platformErrno); 15internal static extern partial int ConvertErrorPalToPlatform(global::Interop.Error error);
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (7)
119private readonly Error _error; 128internal ErrorInfo(Error error) 134internal Error Error 157internal static Error GetLastError() 198internal static partial Error ConvertErrorPlatformToPal(int platformErrno); 202internal static partial int ConvertErrorPalToPlatform(Error error); 220public static Interop.ErrorInfo Info(this Interop.Error error)
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (15)
13Debug.Assert(errorInfo.Error != Error.SUCCESS); 14Debug.Assert(errorInfo.Error != Error.EINTR, "EINTR errors should be handled by the native shim and never bubble up to managed code"); 19internal static void CheckIo(Error error, string? path = null, bool isDirError = false) 21if (error != Interop.Error.SUCCESS) 120case Error.ENOENT: 129goto case Error.ENOTDIR; 131case Error.ENOTDIR: 140case Error.EACCES: 141case Error.EBADF: 142case Error.EPERM: 148case Error.ENAMETOOLONG: 153case Error.EWOULDBLOCK: 158case Error.ECANCELED: 161case Error.EFBIG: 164case Error.EEXIST:
src\runtime\src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (1)
87if (errorInfo.Error == Interop.Error.ERANGE)
System\IO\Pipes\NamedPipeClientStream.Unix.cs (1)
46Interop.Sys.GetLastErrorInfo().Error == Interop.Error.ENOENT)
System\IO\Pipes\PipeStream.Unix.cs (3)
465if (errorInfo.Error == Interop.Error.EPIPE) 523return error.Error == Interop.Error.ENOTSUP ? 524new PlatformNotSupportedException(SR.Format(SR.PlatformNotSupported_OperatingSystemError, nameof(Interop.Error.ENOTSUP))) :