Lines Matching defs:rbio
1236 if (!TEST_false(BIO_get_ktls_recv(clientssl->rbio)))
1239 if (BIO_get_ktls_send(clientssl->rbio))
1244 if (!TEST_false(BIO_get_ktls_recv(serverssl->rbio)))
1247 if (BIO_get_ktls_send(serverssl->rbio))
2880 * various combinations of valid BIOs or NULL being set for the rbio/wbio. We
3033 /* Verify changing the rbio/wbio directly does not cause leaks */
3484 BIO *rbio;
3551 rbio = SSL_get_rbio(serverssl);
3552 if (!TEST_true(BIO_read_ex(rbio, data, sizeof(data), &rawread))
3559 if (!TEST_true(BIO_write_ex(rbio, data, eoedlen, &rawwritten))
3579 /* Push the ClientFinished and the normal data back into the server rbio */
3580 if (!TEST_true(BIO_write_ex(rbio, data + eoedlen, rawread - eoedlen,
6949 BIO *rbio, *wbio;
6964 rbio = BIO_new(BIO_s_mem());
6966 if (!TEST_ptr(rbio)|| !TEST_ptr(wbio)) {
6967 BIO_free(rbio);
6972 SSL_set_bio(con, rbio, wbio);
9422 BIO *rbio = NULL, *wbio = NULL;
9440 rbio = SSL_get_rbio(clientssl);
9441 if (!TEST_ptr(rbio)
9442 || !TEST_true(BIO_up_ref(rbio)))
9444 SSL_set0_rbio(client2ssl, rbio);
9445 rbio = NULL;
9451 rbio = NULL;