Lines Matching refs:c_bio
1594 BIO *c_bio=NULL; in doit() local
1613 c_bio=BIO_new(BIO_f_ssl()); in doit()
1615 if ((c_bio == NULL) || (s_bio == NULL)) in doit()
1623 BIO_set_ssl(c_bio,c_ssl,BIO_NOCLOSE); in doit()
1642 i=(int)BIO_pending(c_bio); in doit()
1679 i=BIO_write(c_bio,cbuf,j); in doit()
1684 if (BIO_should_retry(c_bio)) in doit()
1686 if (BIO_should_read(c_bio)) in doit()
1688 if (BIO_should_write(c_bio)) in doit()
1715 i=BIO_read(c_bio,cbuf,sizeof(cbuf)); in doit()
1720 if (BIO_should_retry(c_bio)) in doit()
1722 if (BIO_should_read(c_bio)) in doit()
1724 if (BIO_should_write(c_bio)) in doit()
1875 if (c_bio != NULL) BIO_free_all(c_bio); in doit()