Home | History | Annotate | Download | only in resolv

Lines Matching full:readset

162 static int retrying_select(const int sock, fd_set *readset, fd_set *writeset,
970 retrying_select(const int sock, fd_set *readset, fd_set *writeset, const struct timespec *finish)
983 if (readset) {
984 FD_ZERO(readset);
985 FD_SET(sock, readset);
996 n = pselect(sock + 1, readset, writeset, NULL, &timeout, NULL);
1014 if ((readset && FD_ISSET(sock, readset)) || (writeset && FD_ISSET(sock, writeset))) {