Searched refs:readfds (Results 1 – 5 of 5) sorted by relevance
/openssl/apps/lib/ |
H A D | s_socket.c | 396 fd_set readfds; in do_server() local 437 FD_ZERO(&readfds); in do_server() 438 openssl_fdset(sock, &readfds); in do_server() 439 } while (select(sock + 1, &readfds, NULL, NULL, &timeout) > 0 in do_server()
|
/openssl/apps/ |
H A D | s_client.c | 877 fd_set readfds, writefds; in s_client_main() local 963 FD_ZERO(&readfds); in s_client_main() 968 __msan_unpoison(&readfds, sizeof(readfds)); in s_client_main() 2552 FD_ZERO(&readfds); in s_client_main() 2553 openssl_fdset(SSL_get_fd(con), &readfds); in s_client_main() 2907 FD_ZERO(&readfds); in s_client_main() 3011 openssl_fdset(SSL_get_fd(con), &readfds); in s_client_main() 3068 && !FD_ISSET(SSL_get_fd(con), &readfds) in s_client_main() 3243 else if (FD_ISSET(fileno_stdin(), &readfds)) in s_client_main() 3310 FD_ZERO(&readfds); in s_client_main() [all …]
|
H A D | s_server.c | 2438 fd_set readfds; in sv_body() local 2636 FD_ZERO(&readfds); in sv_body() 2638 openssl_fdset(fileno_stdin(), &readfds); in sv_body() 2640 openssl_fdset(s, &readfds); in sv_body() 2657 i = select(width, (void *)&readfds, NULL, NULL, &timeout); in sv_body() 2675 if (FD_ISSET(fileno_stdin(), &readfds)) in sv_body() 2678 if (FD_ISSET(s, &readfds)) in sv_body() 3167 fd_set readfds; in www_body() local 3341 FD_ZERO(&readfds); in www_body() 3342 openssl_fdset(s, &readfds); in www_body() [all …]
|
/openssl/util/ |
H A D | quicserver.c | 29 fd_set readfds, writefds; in wait_for_activity() local 40 readfdsp = &readfds; in wait_for_activity()
|
/openssl/test/helpers/ |
H A D | ssltestlib.c | 996 fd_set readfds; in wait_until_sock_readable() local 1001 FD_ZERO(&readfds); in wait_until_sock_readable() 1002 openssl_fdset(sock, &readfds); in wait_until_sock_readable() 1006 select(width, &readfds, NULL, NULL, &timeout); in wait_until_sock_readable() 1008 return FD_ISSET(sock, &readfds); in wait_until_sock_readable()
|
Completed in 61 milliseconds