Lines Matching defs:readfds
2329 fd_set readfds;
2527 FD_ZERO(&readfds);
2529 openssl_fdset(fileno_stdin(), &readfds);
2531 openssl_fdset(s, &readfds);
2548 i = select(width, (void *)&readfds, NULL, NULL, &timeout);
2559 i = select(width, (void *)&readfds, NULL, NULL, timeoutp);
2566 if (FD_ISSET(fileno_stdin(), &readfds))
2569 if (FD_ISSET(s, &readfds))
3048 fd_set readfds;
3189 FD_ZERO(&readfds);
3190 openssl_fdset(s, &readfds);
3191 i = select(width, (void *)&readfds, NULL, NULL, NULL);
3192 if (i <= 0 || !FD_ISSET(s, &readfds)) {