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

  /external/boringssl/src/ssl/
ssl_lib.c 471 BIO_free_all(ssl->wbio);
514 void SSL_set0_wbio(SSL *ssl, BIO *wbio) {
515 BIO_free_all(ssl->wbio);
516 ssl->wbio = wbio;
519 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) {
524 if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) {
530 if (rbio != NULL && rbio == wbio) {
534 /* If only the wbio is changed, adopt only one reference. */
536 SSL_set0_wbio(ssl, wbio);
1170 BIO *wbio = SSL_get_wbio(ssl); local
    [all...]
internal.h 1833 BIO *wbio; \/* used by SSL_write *\/ member in struct:ssl_st
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/
NativeCrypto.cpp 7142 BIO* wbio = SSL_get_wbio(ssl); local
7410 BIO* wbio = SSL_get_wbio(ssl); local
7747 BIO* wbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(wbioRef)); local
    [all...]

Completed in 524 milliseconds