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

  /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...]
  /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
url_request.cc 295 void URLRequest::SimulateError(int os_error) {
296 DoCancel(os_error, net::SSLInfo());
299 void URLRequest::SimulateSSLError(int os_error, const net::SSLInfo& ssl_info) {
305 DoCancel(os_error, ssl_info);
308 void URLRequest::DoCancel(int os_error, const net::SSLInfo& ssl_info) {
309 DCHECK(os_error < 0);
315 status_.set_os_error(os_error);
361 net::LoadLog::AddErrorCode(load_log_, status_.os_error());
url_request.h 425 // Cancels the request and sets the error to |os_error| (see net_error_list.h
427 void SimulateError(int os_error);
429 // Cancels the request and sets the error to |os_error| (see net_error_list.h
433 void SimulateSSLError(int os_error, const net::SSLInfo& ssl_info);
555 void DoCancel(int os_error, const net::SSLInfo& ssl_info);
url_request_unittest.cc 141 (int) r.status().status() << ", os error: " << r.status().os_error();
176 EXPECT_EQ(net::ERR_TUNNEL_CONNECTION_FAILED, r.status().os_error());
201 EXPECT_EQ(net::ERR_TUNNEL_CONNECTION_FAILED, r.status().os_error());
545 (int) r.status().status() << ", os error: " << r.status().os_error();
590 (int) r.status().status() << ", os error: " << r.status().os_error();
995 EXPECT_EQ(net::ERR_UNSAFE_REDIRECT, req.status().os_error());
1008 EXPECT_EQ(net::ERR_INVALID_URL, req.status().os_error());
    [all...]
  /external/chromium/net/proxy/
proxy_script_fetcher.cc 291 result_code_ = request->status().os_error();

Completed in 54 milliseconds