10 references to EACCES
System.Private.CoreLib (10)
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (1)
140case Error.EACCES:
src\runtime\src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs (2)
133error = Interop.Error.EACCES.Info(); 386throw Interop.GetExceptionForIoErrno(Interop.Error.EACCES.Info(), path);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEnumerator.Unix.cs (1)
75=> info.Error == Interop.Error.EACCES || info.Error == Interop.Error.EBADF
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\FileSystem.Unix.cs (4)
89errorInfo.Error == Interop.Error.EACCES || 270errorInfo = Interop.Error.EACCES.Info(); 454case Interop.Error.EACCES: // match Win32 exception 561if (errorInfo.Error == Interop.Error.EACCES ||
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\SharedMemoryManager.Unix.cs (2)
465if (error.Error == Interop.Error.EACCES && transientRetryCount < TransientRetryCount) 602if ((error.Error == Interop.Error.ENOENT || error.Error == Interop.Error.EACCES) && RetryOnTransientPermissionFailure())