Lines Matching refs:res
134 #define EXT(res) ((res)->_u._ext) argument
986 int res, origflags; in connect_with_timeout() local
991 res = __connect(sock, nsap, salen); in connect_with_timeout()
992 if (res < 0 && errno != EINPROGRESS) { in connect_with_timeout()
993 res = -1; in connect_with_timeout()
996 if (res != 0) { in connect_with_timeout()
1003 res = retrying_poll(sock, POLLIN | POLLOUT, &finish); in connect_with_timeout()
1004 if (res <= 0) { in connect_with_timeout()
1005 res = -1; in connect_with_timeout()
1012 " %d connect_with_const timeout returning %d\n", sock, res); in connect_with_timeout()
1014 return res; in connect_with_timeout()