/external/conscrypt/common/src/jni/main/include/conscrypt/ |
D | scoped_ssl_bio.h | 30 ScopedSslBio(SSL* ssl, BIO* rbio, BIO* wbio) : ssl_(ssl) { in ScopedSslBio() argument 31 SSL_set_bio(ssl_, rbio, wbio); in ScopedSslBio() 33 BIO_up_ref(wbio); in ScopedSslBio()
|
/external/boringssl/src/ssl/ |
D | bio_ssl.cc | 131 BIO *wbio = SSL_get_wbio(ssl); in ssl_ctrl() local 133 long ret = BIO_ctrl(wbio, cmd, num, ptr); in ssl_ctrl() 134 BIO_set_flags(bio, BIO_get_retry_flags(wbio)); in ssl_ctrl() 135 BIO_set_retry_reason(bio, BIO_get_retry_reason(wbio)); in ssl_ctrl()
|
D | ssl_buffer.cc | 263 int ret = BIO_write(ssl->wbio.get(), buf->data(), buf->size()); in tls_write_buffer_flush() 280 int ret = BIO_write(ssl->wbio.get(), buf->data(), buf->size()); in dtls_write_buffer_flush() 294 if (ssl->wbio == nullptr) { in ssl_write_buffer_flush()
|
D | ssl_lib.cc | 762 void SSL_set0_wbio(SSL *ssl, BIO *wbio) { in SSL_set0_wbio() argument 763 ssl->wbio.reset(wbio); in SSL_set0_wbio() 766 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) { in SSL_set_bio() argument 771 if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) { in SSL_set_bio() 777 if (rbio != NULL && rbio == wbio) { in SSL_set_bio() 783 SSL_set0_wbio(ssl, wbio); in SSL_set_bio() 790 if (wbio == SSL_get_wbio(ssl) && SSL_get_rbio(ssl) != SSL_get_wbio(ssl)) { in SSL_set_bio() 797 SSL_set0_wbio(ssl, wbio); in SSL_set_bio() 802 BIO *SSL_get_wbio(const SSL *ssl) { return ssl->wbio.get(); } in SSL_get_wbio() 1659 BIO *wbio = SSL_get_wbio(ssl); in SSL_set_rfd() local [all …]
|
D | d1_both.cc | 607 long mtu = BIO_ctrl(ssl->wbio.get(), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL); in dtls1_update_mtu() 612 BIO_ctrl(ssl->wbio.get(), BIO_CTRL_DGRAM_SET_MTU, ssl->d1->mtu, NULL); in dtls1_update_mtu() 792 int bio_ret = BIO_write(ssl->wbio.get(), packet, packet_len); in send_flight() 803 if (BIO_flush(ssl->wbio.get()) <= 0) { in send_flight()
|
D | d1_pkt.cc | 262 BIO_flush(ssl->wbio.get()); in dtls1_dispatch_alert()
|
D | d1_lib.cc | 175 BIO_ctrl(ssl->wbio.get(), BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, nullptr); in dtls1_check_timeout_num()
|
D | s3_both.cc | 328 ssl->wbio.get(), in tls_flush_flight() 339 if (BIO_flush(ssl->wbio.get()) <= 0) { in tls_flush_flight()
|
D | s3_pkt.cc | 447 BIO_flush(ssl->wbio.get()); in tls_dispatch_alert()
|
D | ssl_test.cc | 3979 UniquePtr<BIO> rbio(BIO_new(BIO_s_mem())), wbio(BIO_new(BIO_s_mem())); in TEST() local 3981 ASSERT_TRUE(wbio); in TEST() 3983 SSL_set0_wbio(ssl.get(), wbio.release()); in TEST() 4165 BIO *wbio = SSL_get_wbio(src); in MoveBIOs() local 4166 BIO_up_ref(wbio); in MoveBIOs() 4167 SSL_set0_wbio(dest, wbio); in MoveBIOs()
|
/external/rust/crates/quiche/deps/boringssl/src/ssl/ |
D | ssl_buffer.cc | 263 int ret = BIO_write(ssl->wbio.get(), buf->data(), buf->size()); in tls_write_buffer_flush() 280 int ret = BIO_write(ssl->wbio.get(), buf->data(), buf->size()); in dtls_write_buffer_flush() 294 if (ssl->wbio == nullptr) { in ssl_write_buffer_flush()
|
D | ssl_lib.cc | 763 void SSL_set0_wbio(SSL *ssl, BIO *wbio) { in SSL_set0_wbio() argument 764 ssl->wbio.reset(wbio); in SSL_set0_wbio() 767 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) { in SSL_set_bio() argument 772 if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) { in SSL_set_bio() 778 if (rbio != NULL && rbio == wbio) { in SSL_set_bio() 784 SSL_set0_wbio(ssl, wbio); in SSL_set_bio() 791 if (wbio == SSL_get_wbio(ssl) && SSL_get_rbio(ssl) != SSL_get_wbio(ssl)) { in SSL_set_bio() 798 SSL_set0_wbio(ssl, wbio); in SSL_set_bio() 803 BIO *SSL_get_wbio(const SSL *ssl) { return ssl->wbio.get(); } in SSL_get_wbio() 1616 BIO *wbio = SSL_get_wbio(ssl); in SSL_set_rfd() local [all …]
|
D | d1_both.cc | 607 long mtu = BIO_ctrl(ssl->wbio.get(), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL); in dtls1_update_mtu() 612 BIO_ctrl(ssl->wbio.get(), BIO_CTRL_DGRAM_SET_MTU, ssl->d1->mtu, NULL); in dtls1_update_mtu() 792 int bio_ret = BIO_write(ssl->wbio.get(), packet, packet_len); in send_flight() 803 if (BIO_flush(ssl->wbio.get()) <= 0) { in send_flight()
|
D | d1_pkt.cc | 262 BIO_flush(ssl->wbio.get()); in dtls1_dispatch_alert()
|
D | d1_lib.cc | 175 BIO_ctrl(ssl->wbio.get(), BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, nullptr); in dtls1_check_timeout_num()
|
D | s3_both.cc | 328 ssl->wbio.get(), in tls_flush_flight() 339 if (BIO_flush(ssl->wbio.get()) <= 0) { in tls_flush_flight()
|
D | s3_pkt.cc | 447 BIO_flush(ssl->wbio.get()); in tls_dispatch_alert()
|
D | ssl_test.cc | 3979 UniquePtr<BIO> rbio(BIO_new(BIO_s_mem())), wbio(BIO_new(BIO_s_mem())); in TEST() local 3981 ASSERT_TRUE(wbio); in TEST() 3983 SSL_set0_wbio(ssl.get(), wbio.release()); in TEST() 4165 BIO *wbio = SSL_get_wbio(src); in MoveBIOs() local 4166 BIO_up_ref(wbio); in MoveBIOs() 4167 SSL_set0_wbio(dest, wbio); in MoveBIOs()
|
/external/boringssl/src/ssl/test/ |
D | fuzzer.h | 284 BIO *wbio = SSL_get_wbio(src); in MoveBIOs() local 285 BIO_up_ref(wbio); in MoveBIOs() 286 SSL_set0_wbio(dest, wbio); in MoveBIOs()
|
D | handshake_util.cc | 146 BIO *wbio = SSL_get_wbio(src); in MoveBIOs() local 147 BIO_up_ref(wbio); in MoveBIOs() 148 SSL_set0_wbio(dest, wbio); in MoveBIOs()
|
/external/rust/crates/quiche/deps/boringssl/src/ssl/test/ |
D | fuzzer.h | 284 BIO *wbio = SSL_get_wbio(src); in MoveBIOs() local 285 BIO_up_ref(wbio); in MoveBIOs() 286 SSL_set0_wbio(dest, wbio); in MoveBIOs()
|
D | handshake_util.cc | 146 BIO *wbio = SSL_get_wbio(src); in MoveBIOs() local 147 BIO_up_ref(wbio); in MoveBIOs() 148 SSL_set0_wbio(dest, wbio); in MoveBIOs()
|
/external/libevent/ |
D | bufferevent_openssl.c | 553 BIO *rbio, *wbio; in init_bio_counts() local 555 wbio = SSL_get_wbio(bev_ssl->ssl); in init_bio_counts() 556 bev_ssl->counts.n_written = wbio ? BIO_number_written(wbio) : 0; in init_bio_counts()
|
/external/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/ |
D | ssl.h | 1686 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio);
|
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/ |
D | ssl.h | 268 OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio); 282 OPENSSL_EXPORT void SSL_set0_wbio(SSL *ssl, BIO *wbio);
|