Symbol: SSL_POLL_EVENT_W
crypto/openssl/demos/http3/ossl-nghttp3-demo-server.c
714
if (item->revents & SSL_POLL_EVENT_W) {
crypto/openssl/demos/http3/ossl-nghttp3-demo-server.c
716
processed_event = processed_event | SSL_POLL_EVENT_W;
crypto/openssl/demos/http3/ossl-nghttp3-demo-server.c
740
(unsigned long long)item->revents, SSL_POLL_EVENT_W,
crypto/openssl/include/openssl/ssl.h
2558
#define SSL_POLL_EVENT_RW (SSL_POLL_EVENT_R | SSL_POLL_EVENT_W)
crypto/openssl/include/openssl/ssl.h
2560
#define SSL_POLL_EVENT_WE (SSL_POLL_EVENT_W | SSL_POLL_EVENT_EW)
crypto/openssl/ssl/quic/quic_impl.c
5265
if ((events & SSL_POLL_EVENT_W) != 0)
crypto/openssl/ssl/quic/quic_impl.c
5266
revents |= SSL_POLL_EVENT_W;
crypto/openssl/ssl/quic/quic_impl.c
5284
if ((events & SSL_POLL_EVENT_W) != 0
crypto/openssl/ssl/quic/quic_impl.c
5286
revents |= SSL_POLL_EVENT_W;
crypto/openssl/test/quic_multistream_test.c
5617
expected_revents[0] = SSL_POLL_EVENT_W;
crypto/openssl/test/quic_multistream_test.c
5618
expected_revents[1] = SSL_POLL_EVENT_W;
crypto/openssl/test/quic_multistream_test.c
5619
expected_revents[2] = SSL_POLL_EVENT_W;
crypto/openssl/test/quic_multistream_test.c
5620
expected_revents[3] = SSL_POLL_EVENT_W;
crypto/openssl/test/quic_multistream_test.c
5626
expected_revents[0] = SSL_POLL_EVENT_W | SSL_POLL_EVENT_R;
crypto/openssl/test/quic_multistream_test.c
5627
expected_revents[1] = SSL_POLL_EVENT_W | SSL_POLL_EVENT_ER;
crypto/openssl/test/quic_multistream_test.c
5629
expected_revents[3] = SSL_POLL_EVENT_W;
crypto/openssl/test/radix/quic_tests.c
121
items[i + 1].events |= SSL_POLL_EVENT_W;
crypto/openssl/test/radix/quic_tests.c
122
expected_items[i + 1].revents |= SSL_POLL_EVENT_W;
crypto/openssl/test/radix/quic_tests.c
258
item.events = SSL_POLL_EVENT_W;
crypto/openssl/test/radix/quic_tests.c
267
ok = (!!(item.revents & SSL_POLL_EVENT_W) == expect);