Lines Matching defs:c_bio
2601 BIO *c_bio = NULL;
2626 c_bio = BIO_new(BIO_f_ssl());
2628 if ((c_bio == NULL) || (s_bio == NULL)) {
2636 BIO_set_ssl(c_bio, c_ssl, BIO_NOCLOSE);
2679 i = (int)BIO_pending(c_bio);
2703 i = BIO_write(c_bio, cbuf, j);
2707 if (BIO_should_retry(c_bio)) {
2708 if (BIO_should_read(c_bio))
2710 if (BIO_should_write(c_bio))
2732 i = BIO_read(c_bio, cbuf, bufsiz);
2736 if (BIO_should_retry(c_bio)) {
2737 if (BIO_should_read(c_bio))
2739 if (BIO_should_write(c_bio))
2861 BIO_free_all(c_bio);