Lines Matching refs:readfds
2328 fd_set readfds; in sv_body() local
2526 FD_ZERO(&readfds); in sv_body()
2528 openssl_fdset(fileno_stdin(), &readfds); in sv_body()
2530 openssl_fdset(s, &readfds); in sv_body()
2547 i = select(width, (void *)&readfds, NULL, NULL, &timeout); in sv_body()
2558 i = select(width, (void *)&readfds, NULL, NULL, timeoutp); in sv_body()
2565 if (FD_ISSET(fileno_stdin(), &readfds)) in sv_body()
2568 if (FD_ISSET(s, &readfds)) in sv_body()
3047 fd_set readfds; in www_body() local
3188 FD_ZERO(&readfds); in www_body()
3189 openssl_fdset(s, &readfds); in www_body()
3190 i = select(width, (void *)&readfds, NULL, NULL, NULL); in www_body()
3191 if (i <= 0 || !FD_ISSET(s, &readfds)) { in www_body()