Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(496)

Unified Diff: net/base/net_errors_posix.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/net_errors.cc ('k') | net/base/net_errors_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_errors_posix.cc
diff --git a/net/base/net_errors_posix.cc b/net/base/net_errors_posix.cc
deleted file mode 100644
index a8573fdfc68c8877ad89f154b3edf4b7d1cafb79..0000000000000000000000000000000000000000
--- a/net/base/net_errors_posix.cc
+++ /dev/null
@@ -1,122 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/base/net_errors.h"
-
-#include <errno.h>
-#include <stdlib.h>
-#include <string>
-#include <unistd.h>
-
-#include "base/logging.h"
-#include "base/strings/stringprintf.h"
-
-namespace net {
-
-Error MapSystemError(logging::SystemErrorCode os_error) {
- if (os_error != 0)
- DVLOG(2) << "Error " << os_error;
-
- // There are numerous posix error codes, but these are the ones we thus far
- // find interesting.
- switch (os_error) {
- case EAGAIN:
-#if EWOULDBLOCK != EAGAIN
- case EWOULDBLOCK:
-#endif
- return ERR_IO_PENDING;
- case EACCES:
- return ERR_ACCESS_DENIED;
- case ENETDOWN:
- return ERR_INTERNET_DISCONNECTED;
- case ETIMEDOUT:
- return ERR_TIMED_OUT;
- case ECONNRESET:
- case ENETRESET: // Related to keep-alive.
- case EPIPE:
- return ERR_CONNECTION_RESET;
- case ECONNABORTED:
- return ERR_CONNECTION_ABORTED;
- case ECONNREFUSED:
- return ERR_CONNECTION_REFUSED;
- case EHOSTUNREACH:
- case EHOSTDOWN:
- case ENETUNREACH:
- case EAFNOSUPPORT:
- return ERR_ADDRESS_UNREACHABLE;
- case EADDRNOTAVAIL:
- return ERR_ADDRESS_INVALID;
- case EMSGSIZE:
- return ERR_MSG_TOO_BIG;
- case ENOTCONN:
- return ERR_SOCKET_NOT_CONNECTED;
- case EISCONN:
- return ERR_SOCKET_IS_CONNECTED;
- case EINVAL:
- return ERR_INVALID_ARGUMENT;
- case EADDRINUSE:
- return ERR_ADDRESS_IN_USE;
- case E2BIG: // Argument list too long.
- return ERR_INVALID_ARGUMENT;
- case EBADF: // Bad file descriptor.
- return ERR_INVALID_HANDLE;
- case EBUSY: // Device or resource busy.
- return ERR_INSUFFICIENT_RESOURCES;
- case ECANCELED: // Operation canceled.
- return ERR_ABORTED;
- case EDEADLK: // Resource deadlock avoided.
- return ERR_INSUFFICIENT_RESOURCES;
- case EDQUOT: // Disk quota exceeded.
- return ERR_FILE_NO_SPACE;
- case EEXIST: // File exists.
- return ERR_FILE_EXISTS;
- case EFAULT: // Bad address.
- return ERR_INVALID_ARGUMENT;
- case EFBIG: // File too large.
- return ERR_FILE_TOO_BIG;
- case EISDIR: // Operation not allowed for a directory.
- return ERR_ACCESS_DENIED;
- case ENAMETOOLONG: // Filename too long.
- return ERR_FILE_PATH_TOO_LONG;
- case ENFILE: // Too many open files in system.
- return ERR_INSUFFICIENT_RESOURCES;
- case ENOBUFS: // No buffer space available.
- return ERR_OUT_OF_MEMORY;
- case ENODEV: // No such device.
- return ERR_INVALID_ARGUMENT;
- case ENOENT: // No such file or directory.
- return ERR_FILE_NOT_FOUND;
- case ENOLCK: // No locks available.
- return ERR_INSUFFICIENT_RESOURCES;
- case ENOMEM: // Not enough space.
- return ERR_OUT_OF_MEMORY;
- case ENOSPC: // No space left on device.
- return ERR_FILE_NO_SPACE;
- case ENOSYS: // Function not implemented.
- return ERR_NOT_IMPLEMENTED;
- case ENOTDIR: // Not a directory.
- return ERR_FILE_NOT_FOUND;
- case ENOTSUP: // Operation not supported.
- return ERR_NOT_IMPLEMENTED;
- case EPERM: // Operation not permitted.
- return ERR_ACCESS_DENIED;
- case EROFS: // Read-only file system.
- return ERR_ACCESS_DENIED;
- case ETXTBSY: // Text file busy.
- return ERR_ACCESS_DENIED;
- case EUSERS: // Too many users.
- return ERR_INSUFFICIENT_RESOURCES;
- case EMFILE: // Too many open files.
- return ERR_INSUFFICIENT_RESOURCES;
-
- case 0:
- return OK;
- default:
- LOG(WARNING) << "Unknown error " << os_error
- << " mapped to net::ERR_FAILED";
- return ERR_FAILED;
- }
-}
-
-} // namespace net
« no previous file with comments | « net/base/net_errors.cc ('k') | net/base/net_errors_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698