8 references to Error
System.Console (8)
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (1)
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 (3)
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"); 118switch (errorInfo.Error)
src\runtime\src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (1)
87if (errorInfo.Error == Interop.Error.ERANGE)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\PersistedFiles.Unix.cs (1)
125if (errorInfo.Error == Interop.Error.ERANGE)
System\ConsolePal.Unix.cs (2)
995if (errorInfo.Error == Interop.Error.EPIPE) 1001else if (errorInfo.Error == Interop.Error.EAGAIN) // aka EWOULDBLOCK