HomeSort by relevance Sort by last modified time
    Searched defs:os_error (Results 1 - 3 of 3) sorted by null

  /external/chromium/net/url_request/
url_request_status.h 16 // Request succeeded, os_error() will be 0.
25 // navigated, but no error should be displayed. os_error will be 0.
31 // The request failed for some reason. os_error may have more information.
41 int os_error() const { return os_error_; } function in class:URLRequestStatus
  /external/chromium/net/socket/
tcp_client_socket_libevent.cc 51 int MapPosixError(int os_error) {
54 switch (os_error) {
82 LOG(WARNING) << "Unknown error " << os_error
88 int MapConnectError(int os_error) {
89 switch (os_error) {
93 int net_error = MapPosixError(os_error);
101 // Given os_error, an errno from a connect() attempt, returns true if
103 bool ShouldTryNextAddress(int os_error) {
104 switch (os_error) {
184 int os_error = errno local
393 int os_error = 0; local
    [all...]
tcp_client_socket_win.cc 45 int MapWinsockError(int os_error) {
48 switch (os_error) {
81 LOG(WARNING) << "Unknown error " << os_error
87 int MapConnectError(int os_error) {
88 switch (os_error) {
92 int net_error = MapWinsockError(os_error);
100 // Given os_error, a WSAGetLastError() error code from a connect() attempt,
102 bool ShouldTryNextAddress(int os_error) {
103 switch (os_error) {
356 int os_error = WSAGetLastError() local
476 int os_error = WSAGetLastError(); local
517 int os_error = WSAGetLastError(); local
546 int os_error = WSAGetLastError(); local
639 int os_error = events.iErrorCode[FD_CONNECT_BIT]; local
    [all...]

Completed in 29 milliseconds