Symbol: SSL_want
crypto/openssl/include/openssl/ssl.h
1633
__owur int SSL_want(const SSL *s);
crypto/openssl/include/openssl/ssl.h
939
#define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING)
crypto/openssl/include/openssl/ssl.h
940
#define SSL_want_read(s) (SSL_want(s) == SSL_READING)
crypto/openssl/include/openssl/ssl.h
941
#define SSL_want_write(s) (SSL_want(s) == SSL_WRITING)
crypto/openssl/include/openssl/ssl.h
942
#define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP)
crypto/openssl/include/openssl/ssl.h
943
#define SSL_want_retry_verify(s) (SSL_want(s) == SSL_RETRY_VERIFY)
crypto/openssl/include/openssl/ssl.h
944
#define SSL_want_async(s) (SSL_want(s) == SSL_ASYNC_PAUSED)
crypto/openssl/include/openssl/ssl.h
945
#define SSL_want_async_job(s) (SSL_want(s) == SSL_ASYNC_NO_JOBS)
crypto/openssl/include/openssl/ssl.h
946
#define SSL_want_client_hello_cb(s) (SSL_want(s) == SSL_CLIENT_HELLO_CB)
crypto/openssl/ssl/quic/quic_impl.c
1752
int want = SSL_want(qc->tls);
crypto/openssl/test/quic_multistream_test.c
1018
int w = SSL_want(s);
crypto/openssl/test/quic_multistream_test.c
1435
if (!TEST_int_eq(SSL_want(c_tgt), SSL_NOTHING))
crypto/openssl/test/quic_multistream_test.c
1849
if (!TEST_int_eq(SSL_want(c_tgt), SSL_NOTHING))
crypto/openssl/test/quicapitest.c
1197
|| !TEST_int_eq(SSL_want(clientquic), SSL_RETRY_VERIFY))
crypto/openssl/test/radix/quic_ops.c
530
int w = SSL_want(s);
crypto/openssl/test/radix/quic_ops.c
820
if (!TEST_int_eq(SSL_want(ssl), SSL_NOTHING))
crypto/openssl/test/radix/quic_ops.c
903
|| !TEST_int_eq(SSL_want(ssl), SSL_NOTHING))
crypto/openssl/test/sslapitest.c
6972
|| !TEST_int_eq(SSL_want(peerwrite), SSL_NOTHING))