Lines Matching refs:rbio
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; }
740 * rbio, and an application program where rbio and wbio are separate
743 * SSL_want_write(ssl)) and rbio and wbio *are* the same, this test works
1011 if (ssl->rbio == NULL ||
1012 BIO_method_type(ssl->rbio) != BIO_TYPE_FD ||
1013 BIO_get_fd(ssl->rbio, NULL) != fd) {