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