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.cc 478 BIO_free_all(ssl->wbio);
521 void SSL_set0_wbio(SSL *ssl, BIO *wbio) {
522 BIO_free_all(ssl->wbio);
523 ssl->wbio = wbio;
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) {
541 /* If only the wbio is changed, adopt only one reference. */
543 SSL_set0_wbio(ssl, wbio);
1171 BIO *wbio = SSL_get_wbio(ssl); local
    [all...]
internal.h 1947 BIO *wbio; \/* used by SSL_write *\/ member in struct:ssl_st
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/
NativeCrypto.cpp 7250 BIO* wbio = SSL_get_wbio(ssl); local
7518 BIO* wbio = SSL_get_wbio(ssl); local
7853 BIO* wbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(wbioRef)); local
    [all...]

Completed in 159 milliseconds