Lines Matching refs:bbio
1365 if (s->bbio != NULL)
1371 /* Re-attach |bbio| to the new |wbio|. */
1372 if (s->bbio != NULL)
1373 s->wbio = BIO_push(s->bbio, s->wbio);
1423 if (s->bbio != NULL) {
1425 * If |bbio| is active, the true caller-configured BIO is its
1428 return BIO_next(s->bbio);
4379 BIO *bbio;
4381 if (s->bbio != NULL) {
4386 bbio = BIO_new(BIO_f_buffer());
4387 if (bbio == NULL || BIO_set_read_buffer_size(bbio, 1) <= 0) {
4388 BIO_free(bbio);
4392 s->bbio = bbio;
4393 s->wbio = BIO_push(bbio, s->wbio);
4401 if (s->bbio == NULL)
4405 BIO_free(s->bbio);
4406 s->bbio = NULL;