Lines Matching refs:rbio
2272 BIO *rbio; in test_early_data_read_write() local
2338 rbio = SSL_get_rbio(serverssl); in test_early_data_read_write()
2339 if (!TEST_true(BIO_read_ex(rbio, data, sizeof(data), &rawread)) in test_early_data_read_write()
2346 if (!TEST_true(BIO_write_ex(rbio, data, eoedlen, &rawwritten)) in test_early_data_read_write()
2367 if (!TEST_true(BIO_write_ex(rbio, data + eoedlen, rawread - eoedlen, in test_early_data_read_write()
4907 BIO *rbio, *wbio; in test_max_fragment_len_ext() local
4921 rbio = BIO_new(BIO_s_mem()); in test_max_fragment_len_ext()
4923 if (!TEST_ptr(rbio)|| !TEST_ptr(wbio)) { in test_max_fragment_len_ext()
4924 BIO_free(rbio); in test_max_fragment_len_ext()
4929 SSL_set_bio(con, rbio, wbio); in test_max_fragment_len_ext()
6620 BIO *rbio = NULL, *wbio = NULL; in test_ssl_dup() local
6638 rbio = SSL_get_rbio(clientssl); in test_ssl_dup()
6639 if (!TEST_ptr(rbio) in test_ssl_dup()
6640 || !TEST_true(BIO_up_ref(rbio))) in test_ssl_dup()
6642 SSL_set0_rbio(client2ssl, rbio); in test_ssl_dup()
6643 rbio = NULL; in test_ssl_dup()
6649 rbio = NULL; in test_ssl_dup()