8 references to EEXIST
System.Private.CoreLib (8)
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (1)
164case Error.EEXIST:
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\FileSystem.Unix.cs (5)
57if (error.Error == Interop.Error.EEXIST && DirectoryExists(path)) 112else if (errorInfo.Error == Interop.Error.EEXIST) 303if (errorInfo.Error == Interop.Error.EEXIST && DirectoryExists(fullPath)) 355else if (errorInfo.Error == Interop.Error.EEXIST) 377if (errorInfo.Error == Interop.Error.EEXIST)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\SharedMemoryManager.Unix.cs (2)
500if (error.Error == Interop.Error.EEXIST && transientRetryCount < TransientRetryCount) 588if (mkdirError.Error != Interop.Error.EEXIST)