Searched refs:SSL_get_wbio (Results 1 – 9 of 9) sorted by relevance
/external/boringssl/src/ssl/ |
D | bio_ssl.cc | 114 return BIO_ctrl(SSL_get_wbio(ssl), cmd, num, ptr); in ssl_ctrl() 121 long ret = BIO_ctrl(SSL_get_wbio(ssl), cmd, num, ptr); in ssl_ctrl()
|
D | ssl_lib.cc | 819 if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) { in SSL_set_bio() 838 if (wbio == SSL_get_wbio(ssl) && SSL_get_rbio(ssl) != SSL_get_wbio(ssl)) { in SSL_set_bio() 850 BIO *SSL_get_wbio(const SSL *ssl) { return ssl->wbio; } in SSL_get_wbio() function 1300 BIO *bio = SSL_get_wbio(ssl); in SSL_get_error() 1470 BIO *b = BIO_find_type(SSL_get_wbio(ssl), BIO_TYPE_DESCRIPTOR); in SSL_get_wfd() 1509 BIO *wbio = SSL_get_wbio(ssl); in SSL_set_rfd()
|
D | ssl_test.cc | 1744 EXPECT_EQ(SSL_get_rbio(ssl), SSL_get_wbio(ssl)); in ExpectFDs() 3932 BIO *wbio = SSL_get_wbio(src); in MoveBIOs()
|
/external/libevent/ |
D | bufferevent_openssl.c | 551 wbio = SSL_get_wbio(bev_ssl->ssl); in init_bio_counts() 560 unsigned long num_w = BIO_number_written(SSL_get_wbio(bev_ssl->ssl)); in decrement_buckets() 1232 BIO *bio = SSL_get_wbio(bev_ssl->ssl); in be_openssl_destruct() 1430 BIO *bio = SSL_get_wbio(ssl); in bufferevent_openssl_socket_new()
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 587 BIO_set_nbio(SSL_get_wbio(self->ssl), 1); in newPySSLSocket() 625 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in PySSL_SSLdo_handshake() 1698 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in PySSL_SSLwrite() 1833 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in PySSL_SSLread() 1910 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in PySSL_SSLshutdown()
|
/external/python/cpython3/Modules/ |
D | _ssl.c | 652 BIO_set_nbio(SSL_get_wbio(self->ssl), 1); in newPySSLSocket() 701 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in _ssl__SSLSocket_do_handshake_impl() 1977 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in _ssl__SSLSocket_write_impl() 2135 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in _ssl__SSLSocket_read_impl() 2229 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in _ssl__SSLSocket_shutdown_impl()
|
/external/boringssl/src/include/openssl/ |
D | ssl.h | 288 OPENSSL_EXPORT BIO *SSL_get_wbio(const SSL *ssl);
|
/external/boringssl/src/ssl/test/ |
D | bssl_shim.cc | 171 BIO *wbio = SSL_get_wbio(src); in MoveBIOs()
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 7800 BIO* wbio = SSL_get_wbio(ssl); in sslRead() 8069 BIO* wbio = SSL_get_wbio(ssl); in sslWrite()
|