Home | History | Annotate | Download | only in socket

Lines Matching refs:os_error

80 int MapConnectError(int os_error) {
81 switch (os_error) {
87 int net_error = MapSystemError(os_error);
290 int os_error = connect_os_error_;
294 params = new NetLogIntegerParameter("os_error", os_error);
600 int os_error = 0;
601 socklen_t len = sizeof(os_error);
602 if (getsockopt(socket_, SOL_SOCKET, SO_ERROR, &os_error, &len) < 0)
603 os_error = errno;
606 if (os_error == EINPROGRESS || os_error == EALREADY) {
611 connect_os_error_ = os_error;
612 int rv = DoConnectLoop(MapConnectError(os_error));