Lines Matching defs:s_bio
2602 BIO *s_bio = NULL;
2627 s_bio = BIO_new(BIO_f_ssl());
2628 if ((c_bio == NULL) || (s_bio == NULL)) {
2662 BIO_set_ssl(s_bio, s_ssl, BIO_NOCLOSE);
2675 i = (int)BIO_pending(s_bio);
2769 i = BIO_read(s_bio, sbuf, bufsiz);
2773 if (BIO_should_retry(s_bio)) {
2774 if (BIO_should_read(s_bio))
2776 if (BIO_should_write(s_bio))
2805 i = BIO_write(s_bio, sbuf, j);
2809 if (BIO_should_retry(s_bio)) {
2810 if (BIO_should_read(s_bio))
2812 if (BIO_should_write(s_bio))
2862 BIO_free_all(s_bio);