Lines Matching defs:bbio
1298 if (s->bbio != NULL)
1304 /* Re-attach |bbio| to the new |wbio|. */
1305 if (s->bbio != NULL)
1306 s->wbio = BIO_push(s->bbio, s->wbio);
1356 if (s->bbio != NULL) {
1358 * If |bbio| is active, the true caller-configured BIO is its
1361 return BIO_next(s->bbio);
4275 BIO *bbio;
4277 if (s->bbio != NULL) {
4282 bbio = BIO_new(BIO_f_buffer());
4283 if (bbio == NULL || BIO_set_read_buffer_size(bbio, 1) <= 0) {
4284 BIO_free(bbio);
4288 s->bbio = bbio;
4289 s->wbio = BIO_push(bbio, s->wbio);
4297 if (s->bbio == NULL)
4301 BIO_free(s->bbio);
4302 s->bbio = NULL;