/external/boringssl/src/ssl/ |
ssl_buffer.c | 115 /* Read a single packet from |ssl->rbio|. |buf->cap| must fit in an int. */ 117 int ret = BIO_read(ssl->rbio, buf->buf + buf->offset, (int)buf->cap); 140 int ret = BIO_read(ssl->rbio, buf->buf + buf->offset + buf->len, 162 if (ssl->rbio == NULL) {
|
ssl_lib.c | 474 int free_wbio = ssl->wbio != ssl->rbio; 475 BIO_free_all(ssl->rbio); 529 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) { 538 if (ssl->rbio != rbio) { 539 BIO_free_all(ssl->rbio); 541 if (ssl->wbio != wbio && ssl->rbio != ssl->wbio) { 544 ssl->rbio = rbio; 548 BIO *SSL_get_rbio(const SSL *ssl) { return ssl->rbio; } [all...] |
/external/conscrypt/src/main/native/ |
org_conscrypt_NativeCrypto.cpp | 9343 BIO* rbio = reinterpret_cast<BIO*>(rbioRef); local 9763 BIO* rbio = SSL_get_rbio(ssl); local 9885 BIO* rbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(sourceBioRef)); local 10072 BIO* rbio = SSL_get_rbio(ssl); local 10477 BIO* rbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(rbioRef)); local [all...] |
/external/boringssl/src/include/openssl/ |
ssl.h | 233 /* 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| 237 * In DTLS, if |rbio| is blocking, it must handle 241 OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio); 3734 BIO *rbio; \/* used by SSL_read *\/ member in struct:ssl_st [all...] |