Lines Matching refs:res
134 #define EXT(res) ((res)->_u._ext) argument
984 int res, origflags; in connect_with_timeout() local
989 res = __connect(sock, nsap, salen); in connect_with_timeout()
990 if (res < 0 && errno != EINPROGRESS) { in connect_with_timeout()
991 res = -1; in connect_with_timeout()
994 if (res != 0) { in connect_with_timeout()
1001 res = retrying_poll(sock, POLLIN | POLLOUT, &finish); in connect_with_timeout()
1002 if (res <= 0) { in connect_with_timeout()
1003 res = -1; in connect_with_timeout()
1010 " %d connect_with_const timeout returning %d\n", sock, res); in connect_with_timeout()
1012 return res; in connect_with_timeout()