HomeSort by relevance Sort by last modified time
    Searched refs:rbio (Results 1 - 9 of 9) 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);
32 BIO_up_ref(rbio);
  /external/boringssl/src/ssl/
ssl_buffer.cc 115 // Read a single packet from |ssl->rbio|. |buf->cap()| must fit in an int.
116 int ret = BIO_read(ssl->rbio, buf->data(), static_cast<int>(buf->cap()));
137 int ret = BIO_read(ssl->rbio, buf->data() + buf->size(),
166 if (ssl->rbio == NULL) {
ssl_lib.cc 765 BIO_free_all(ssl->rbio);
804 void SSL_set0_rbio(SSL *ssl, BIO *rbio) {
805 BIO_free_all(ssl->rbio);
806 ssl->rbio = rbio;
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) {
826 BIO_up_ref(rbio);
1489 BIO *rbio = SSL_get_rbio(ssl); local
    [all...]
ssl_test.cc 3928 BIO *rbio = SSL_get_rbio(src); local
    [all...]
internal.h 2523 BIO *rbio; \/\/ used by SSL_read member in struct:bssl::SSLConnection
    [all...]
  /external/libevent/
bufferevent_openssl.c 549 BIO *rbio, *wbio; local
553 rbio = SSL_get_rbio(bev_ssl->ssl);
554 bev_ssl->counts.n_read = rbio ? BIO_number_read(rbio) : 0;
    [all...]
  /external/boringssl/src/ssl/test/
bssl_shim.cc 167 BIO *rbio = SSL_get_rbio(src); local
168 BIO_up_ref(rbio);
169 SSL_set0_rbio(dest, rbio);
    [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|
254 // In DTLS, |rbio| must be non-blocking to properly handle timeouts and
257 // If |rbio| is the same as the currently configured |BIO| for reading, that
268 OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio);
270 // SSL_set0_rbio configures |ssl| to write to |rbio|. It takes ownership of
271 // |rbio|.
275 OPENSSL_EXPORT void SSL_set0_rbio(SSL *ssl, BIO *rbio);
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
native_crypto.cc 7799 BIO* rbio = SSL_get_rbio(ssl); local
8068 BIO* rbio = SSL_get_rbio(ssl); local
    [all...]

Completed in 174 milliseconds