22 references to Error
System.IO.Compression.ZipFile (22)
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\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: 136case Error.EACCES: 137case Error.EBADF: 138case Error.EPERM: 144case Error.ENAMETOOLONG: 149case Error.EWOULDBLOCK: 154case Error.ECANCELED: 157case Error.EFBIG: 160case Error.EEXIST: