Home | History | Annotate | Download | only in resolv

Lines Matching refs:readset

162 static int retrying_select(const int sock, fd_set *readset, fd_set *writeset,
981 retrying_select(const int sock, fd_set *readset, fd_set *writeset, const struct timespec *finish)
994 if (readset) {
995 FD_ZERO(readset);
996 FD_SET(sock, readset);
1007 n = pselect(sock + 1, readset, writeset, NULL, &timeout, NULL);
1025 if ((readset && FD_ISSET(sock, readset)) || (writeset && FD_ISSET(sock, writeset))) {