HomeSort by relevance Sort by last modified time
    Searched refs:wbio (Results 1 - 14 of 14) sorted by null

  /external/conscrypt/common/src/jni/main/include/conscrypt/
scoped_ssl_bio.h 30 ScopedSslBio(SSL* ssl, BIO* rbio, BIO* wbio) : ssl_(ssl) {
31 SSL_set_bio(ssl_, rbio, wbio);
33 BIO_up_ref(wbio);
  /external/boringssl/src/ssl/
ssl_buffer.cc 243 int ret = BIO_write(ssl->wbio, buf->data(), buf->size());
260 int ret = BIO_write(ssl->wbio, buf->data(), buf->size());
274 if (ssl->wbio == NULL) {
ssl_lib.cc 766 BIO_free_all(ssl->wbio);
809 void SSL_set0_wbio(SSL *ssl, BIO *wbio) {
810 BIO_free_all(ssl->wbio);
811 ssl->wbio = wbio;
814 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) {
819 if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) {
825 if (rbio != NULL && rbio == wbio) {
829 // If only the wbio is changed, adopt only one reference.
831 SSL_set0_wbio(ssl, wbio);
1509 BIO *wbio = SSL_get_wbio(ssl); local
    [all...]
d1_lib.cc 174 long mtu = BIO_ctrl(ssl->wbio, BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, NULL);
d1_pkt.cc 263 BIO_flush(ssl->wbio);
s3_both.cc 260 ssl->wbio,
271 if (BIO_flush(ssl->wbio) <= 0) {
d1_both.cc 607 long mtu = BIO_ctrl(ssl->wbio, BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
612 BIO_ctrl(ssl->wbio, BIO_CTRL_DGRAM_SET_MTU, ssl->d1->mtu, NULL);
792 int bio_ret = BIO_write(ssl->wbio, packet, packet_len);
803 if (BIO_flush(ssl->wbio) <= 0) {
s3_pkt.cc 414 BIO_flush(ssl->wbio);
ssl_test.cc 3932 BIO *wbio = SSL_get_wbio(src); local
    [all...]
internal.h 2524 BIO *wbio; \/\/ used by SSL_write member in struct:bssl::SSLConnection
    [all...]
  /external/libevent/
bufferevent_openssl.c 549 BIO *rbio, *wbio; local
551 wbio = SSL_get_wbio(bev_ssl->ssl);
552 bev_ssl->counts.n_written = wbio ? BIO_number_written(wbio) : 0;
    [all...]
  /external/boringssl/src/ssl/test/
bssl_shim.cc 171 BIO *wbio = SSL_get_wbio(src); local
172 BIO_up_ref(wbio);
173 SSL_set0_wbio(dest, wbio);
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h 250 // SSL_set_bio configures |ssl| to read from |rbio| and write to |wbio|. |ssl|
251 // takes ownership of the two |BIO|s. If |rbio| and |wbio| are the same, |ssl|
260 // If |wbio| is the same as the currently configured |BIO| for writing AND |ssl|
268 OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio);
277 // SSL_set0_wbio configures |ssl| to write to |wbio|. It takes ownership of
278 // |wbio|.
282 OPENSSL_EXPORT void SSL_set0_wbio(SSL *ssl, BIO *wbio);
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
native_crypto.cc 7800 BIO* wbio = SSL_get_wbio(ssl); local
8069 BIO* wbio = SSL_get_wbio(ssl); local
    [all...]

Completed in 309 milliseconds