Searched defs:wbio (Results 1 - 4 of 4) sorted by relevance

/external/boringssl/src/ssl/
H A Dssl_lib.c467 if (ssl->bbio == ssl->wbio) {
468 ssl->wbio = BIO_pop(ssl->wbio);
474 int free_wbio = ssl->wbio != ssl->rbio;
477 BIO_free_all(ssl->wbio);
529 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) { argument
532 if (ssl->wbio == ssl->bbio) {
533 ssl->wbio = ssl->wbio->next_bio;
541 if (ssl->wbio !
[all...]
/external/boringssl/include/openssl/
H A Dssl.h233 /* SSL_set_bio configures |ssl| to read from |rbio| and write to |wbio|. |ssl|
234 * takes ownership of the two |BIO|s. If |rbio| and |wbio| are the same, |ssl|
241 OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio);
3735 BIO *wbio; /* used by SSL_write */ member in struct:ssl_st
3737 /* bbio, if non-NULL, is a buffer placed in front of |wbio| to pack handshake
/external/boringssl/src/include/openssl/
H A Dssl.h233 /* SSL_set_bio configures |ssl| to read from |rbio| and write to |wbio|. |ssl|
234 * takes ownership of the two |BIO|s. If |rbio| and |wbio| are the same, |ssl|
241 OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio);
3735 BIO *wbio; /* used by SSL_write */ member in struct:ssl_st
3737 /* bbio, if non-NULL, is a buffer placed in front of |wbio| to pack handshake
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp1202 ScopedSslBio(SSL *ssl, BIO* rbio, BIO* wbio) : ssl_(ssl) { argument
1203 SSL_set_bio(ssl_, rbio, wbio);
1205 BIO_up_ref(wbio);
9344 BIO* wbio = reinterpret_cast<BIO*>(wbioRef); local
9345 JNI_TRACE("ssl=%p NativeCrypto_SSL_do_handshake_bio rbio=%p wbio=%p shc=%p client_mode=%d npn=%p",
9346 ssl, rbio, wbio, shc, client_mode, npnProtocols);
9356 if (rbio == nullptr || wbio == nullptr) {
9357 jniThrowNullPointerException(env, "rbio == null || wbio == null");
9358 JNI_TRACE("ssl=%p NativeCrypto_SSL_do_handshake_bio => rbio == null || wbio == NULL", ssl);
9386 ScopedSslBio sslBio(ssl, rbio, wbio);
9764 BIO* wbio = SSL_get_wbio(ssl); local
9886 BIO* wbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(sinkBioRef)); local
10073 BIO* wbio = SSL_get_wbio(ssl); local
10207 BIO* wbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(sinkBioRef)); local
10478 BIO* wbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(wbioRef)); local
[all...]

Completed in 135 milliseconds