Searched defs:rbio (Results 1 - 7 of 7) sorted by last modified time

/external/openssl/apps/
H A Denc.c127 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
489 rbio=in;
501 rbio=BIO_push(bzl,rbio);
519 rbio=BIO_push(b64,rbio);
555 } else if(BIO_read(rbio,mbuf,sizeof mbuf) != sizeof mbuf
556 || BIO_read(rbio,
676 inl=BIO_read(rbio,(char *)buff,bsize);
/external/openssl/include/openssl/
H A Dssl.h1220 BIO *rbio; /* used by SSL_read */ member in struct:ssl_st
1225 char *rbio; /* used by SSL_read */ member in struct:ssl_st
1844 void SSL_set_bio(SSL *s, BIO *rbio,BIO *wbio);
/external/openssl/ssl/
H A Dssl.h1220 BIO *rbio; /* used by SSL_read */ member in struct:ssl_st
1225 char *rbio; /* used by SSL_read */ member in struct:ssl_st
1844 void SSL_set_bio(SSL *s, BIO *rbio,BIO *wbio);
H A Dssl_lib.c559 if (s->rbio != NULL)
560 BIO_free_all(s->rbio);
561 if ((s->wbio != NULL) && (s->wbio != s->rbio))
636 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio) argument
648 if ((s->rbio != NULL) && (s->rbio != rbio))
649 BIO_free_all(s->rbio);
650 if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio))
652 s->rbio
[all...]
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp1014 ScopedSslBio(SSL *ssl, BIO* rbio, BIO* wbio) : ssl_(ssl) { argument
1015 SSL_set_bio(ssl_, rbio, wbio);
1016 CRYPTO_add(&rbio->references,1,CRYPTO_LOCK_BIO);
8214 BIO* rbio = reinterpret_cast<BIO*>(rbioRef); local
8216 JNI_TRACE("ssl=%p NativeCrypto_SSL_do_handshake_bio rbio=%p wbio=%p shc=%p client_mode=%d npn=%p",
8217 ssl, rbio, wbio, shc, client_mode, npnProtocols);
8227 if (rbio == NULL || wbio == NULL) {
8228 jniThrowNullPointerException(env, "rbio == null || wbio == null");
8229 JNI_TRACE("ssl=%p NativeCrypto_SSL_do_handshake_bio => rbio == null || wbio == NULL", ssl);
8233 ScopedSslBio sslBio(ssl, rbio, wbi
8605 BIO* rbio = SSL_get_rbio(ssl); local
8730 BIO* rbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(sourceBioRef)); local
8922 BIO* rbio = SSL_get_rbio(ssl); local
9330 BIO* rbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(rbioRef)); local
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dssl.h1234 BIO *rbio; /* used by SSL_read */ member in struct:ssl_st
1239 char *rbio; /* used by SSL_read */ member in struct:ssl_st
1939 OPENSSL_EXPORT void SSL_set_bio(SSL *s, BIO *rbio,BIO *wbio);
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_lib.c646 if (s->rbio != NULL)
647 BIO_free_all(s->rbio);
648 if ((s->wbio != NULL) && (s->wbio != s->rbio))
706 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio) argument
718 if ((s->rbio != NULL) && (s->rbio != rbio))
719 BIO_free_all(s->rbio);
720 if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio))
722 s->rbio
[all...]

Completed in 254 milliseconds