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

  /external/boringssl/src/ssl/
ssl_lib.c 538 int free_wbio = ssl->wbio != ssl->rbio;
539 BIO_free_all(ssl->rbio);
576 void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio) {
585 if (s->rbio != rbio) {
586 BIO_free_all(s->rbio);
588 if (s->wbio != wbio && s->rbio != s->wbio) {
591 s->rbio = rbio;
595 BIO *SSL_get_rbio(const SSL *s) { return s->rbio; }
    [all...]
s3_pkt.c 222 if (s->rbio != NULL) {
224 i = BIO_read(s->rbio, pkt + len + left, max - left);
    [all...]
s3_srvr.c 602 ret = BIO_read(s->rbio, s->s3->sniff_buffer->data + s->s3->sniff_buffer_len,
    [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp 9202 BIO* rbio = reinterpret_cast<BIO*>(rbioRef); local
9611 BIO* rbio = SSL_get_rbio(ssl); local
9738 BIO* rbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(sourceBioRef)); local
9931 BIO* rbio = SSL_get_rbio(ssl); local
10345 BIO* rbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(rbioRef)); local
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h 1307 BIO *rbio; \/* used by SSL_read *\/ member in struct:ssl_st
    [all...]

Completed in 112 milliseconds