Searched refs:wbio (Results 1 - 12 of 12) sorted by relevance
/external/conscrypt/common/src/jni/main/include/ |
H A D | ScopedSslBio.h | 30 ScopedSslBio(SSL* ssl, BIO* rbio, BIO* wbio) : ssl_(ssl) { argument 31 SSL_set_bio(ssl_, rbio, wbio); 33 BIO_up_ref(wbio);
|
/external/boringssl/src/ssl/ |
H A D | ssl_buffer.cc | 246 int ret = BIO_write(ssl->wbio, buf->buf + buf->offset, buf->len); 263 int ret = BIO_write(ssl->wbio, buf->buf + buf->offset, buf->len); 277 if (ssl->wbio == NULL) {
|
H A D | ssl_lib.cc | 478 BIO_free_all(ssl->wbio); 521 void SSL_set0_wbio(SSL *ssl, BIO *wbio) { argument 522 BIO_free_all(ssl->wbio); 523 ssl->wbio = wbio; 526 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) { argument 531 if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) { 537 if (rbio != NULL && rbio == wbio) { 541 /* If only the wbio is changed, adopt only one reference. */ 543 SSL_set0_wbio(ssl, wbio); 1171 BIO *wbio = SSL_get_wbio(ssl); local [all...] |
H A D | d1_both.cc | 598 long mtu = BIO_ctrl(ssl->wbio, BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL); 603 BIO_ctrl(ssl->wbio, BIO_CTRL_DGRAM_SET_MTU, ssl->d1->mtu, NULL); 778 int bio_ret = BIO_write(ssl->wbio, packet, packet_len); 789 if (BIO_flush(ssl->wbio) <= 0) {
|
H A D | d1_lib.cc | 229 long mtu = BIO_ctrl(ssl->wbio, BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, NULL);
|
H A D | d1_pkt.cc | 407 BIO_flush(ssl->wbio);
|
H A D | s3_both.cc | 356 ssl->wbio, 367 if (BIO_flush(ssl->wbio) <= 0) {
|
H A D | s3_pkt.cc | 582 BIO_flush(ssl->wbio);
|
H A D | internal.h | 1947 BIO *wbio; /* used by SSL_write */ member in struct:ssl_st
|
/external/conscrypt/common/src/jni/main/cpp/ |
H A D | NativeCrypto.cpp | 7250 BIO* wbio = SSL_get_wbio(ssl); local 7270 size_t bytesMoved = BIO_number_read(rbio) + BIO_number_written(wbio); 7300 if (BIO_number_read(rbio) + BIO_number_written(wbio) != bytesMoved 7518 BIO* wbio = SSL_get_wbio(ssl); local 7540 size_t bytesMoved = BIO_number_read(rbio) + BIO_number_written(wbio); 7572 if (BIO_number_read(rbio) + BIO_number_written(wbio) != bytesMoved 7853 BIO* wbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(wbioRef)); local 7854 JNI_TRACE("ssl=%p NativeCrypto_SSL_shutdown rbio=%p wbio=%p shc=%p", ssl, rbio, wbio, shc); 7858 if (rbio == nullptr || wbio [all...] |
/external/boringssl/include/openssl/ |
H A D | ssl.h | 240 /* SSL_set_bio configures |ssl| to read from |rbio| and write to |wbio|. |ssl| 241 * takes ownership of the two |BIO|s. If |rbio| and |wbio| are the same, |ssl| 250 * If |wbio| is the same as the currently configured |BIO| for writing AND |ssl| 258 OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio); 267 /* SSL_set0_wbio configures |ssl| to write to |wbio|. It takes ownership of 268 * |wbio|. 272 OPENSSL_EXPORT void SSL_set0_wbio(SSL *ssl, BIO *wbio);
|
/external/boringssl/src/include/openssl/ |
H A D | ssl.h | 240 /* SSL_set_bio configures |ssl| to read from |rbio| and write to |wbio|. |ssl| 241 * takes ownership of the two |BIO|s. If |rbio| and |wbio| are the same, |ssl| 250 * If |wbio| is the same as the currently configured |BIO| for writing AND |ssl| 258 OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio); 267 /* SSL_set0_wbio configures |ssl| to write to |wbio|. It takes ownership of 268 * |wbio|. 272 OPENSSL_EXPORT void SSL_set0_wbio(SSL *ssl, BIO *wbio);
|
Completed in 253 milliseconds