Lines Matching refs:s_bio
2619 BIO *s_bio = NULL; in doit() local
2644 s_bio = BIO_new(BIO_f_ssl()); in doit()
2645 if ((c_bio == NULL) || (s_bio == NULL)) { in doit()
2679 BIO_set_ssl(s_bio, s_ssl, BIO_NOCLOSE); in doit()
2692 i = (int)BIO_pending(s_bio); in doit()
2786 i = BIO_read(s_bio, sbuf, bufsiz); in doit()
2790 if (BIO_should_retry(s_bio)) { in doit()
2791 if (BIO_should_read(s_bio)) in doit()
2793 if (BIO_should_write(s_bio)) in doit()
2822 i = BIO_write(s_bio, sbuf, j); in doit()
2826 if (BIO_should_retry(s_bio)) { in doit()
2827 if (BIO_should_read(s_bio)) in doit()
2829 if (BIO_should_write(s_bio)) in doit()
2879 BIO_free_all(s_bio); in doit()