Lines Matching refs:c_bio
2618 BIO *c_bio = NULL; in doit() local
2643 c_bio = BIO_new(BIO_f_ssl()); in doit()
2645 if ((c_bio == NULL) || (s_bio == NULL)) { in doit()
2653 BIO_set_ssl(c_bio, c_ssl, BIO_NOCLOSE); in doit()
2696 i = (int)BIO_pending(c_bio); in doit()
2720 i = BIO_write(c_bio, cbuf, j); in doit()
2724 if (BIO_should_retry(c_bio)) { in doit()
2725 if (BIO_should_read(c_bio)) in doit()
2727 if (BIO_should_write(c_bio)) in doit()
2749 i = BIO_read(c_bio, cbuf, bufsiz); in doit()
2753 if (BIO_should_retry(c_bio)) { in doit()
2754 if (BIO_should_read(c_bio)) in doit()
2756 if (BIO_should_write(c_bio)) in doit()
2878 BIO_free_all(c_bio); in doit()