HomeSort by relevance Sort by last modified time
    Searched defs:rbio (Results 1 - 3 of 3) sorted by null

  /external/boringssl/src/ssl/
ssl_lib.cc 477 BIO_free_all(ssl->rbio);
516 void SSL_set0_rbio(SSL *ssl, BIO *rbio) {
517 BIO_free_all(ssl->rbio);
518 ssl->rbio = rbio;
526 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) {
531 if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) {
537 if (rbio != NULL && rbio == wbio) {
538 BIO_up_ref(rbio);
1151 BIO *rbio = SSL_get_rbio(ssl); local
    [all...]
internal.h 1946 BIO *rbio; \/* used by SSL_read *\/ member in struct:ssl_st
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/
NativeCrypto.cpp 7249 BIO* rbio = SSL_get_rbio(ssl); local
7517 BIO* rbio = SSL_get_rbio(ssl); local
7852 BIO* rbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(rbioRef)); local
    [all...]

Completed in 75 milliseconds