Lines Matching refs:bbio
1283 if (s->bbio != NULL)
1289 /* Re-attach |bbio| to the new |wbio|. */
1290 if (s->bbio != NULL)
1291 s->wbio = BIO_push(s->bbio, s->wbio);
1341 if (s->bbio != NULL) {
1343 * If |bbio| is active, the true caller-configured BIO is its
1346 return BIO_next(s->bbio);
4260 BIO *bbio;
4262 if (s->bbio != NULL) {
4267 bbio = BIO_new(BIO_f_buffer());
4268 if (bbio == NULL || BIO_set_read_buffer_size(bbio, 1) <= 0) {
4269 BIO_free(bbio);
4273 s->bbio = bbio;
4274 s->wbio = BIO_push(bbio, s->wbio);
4282 if (s->bbio == NULL)
4286 BIO_free(s->bbio);
4287 s->bbio = NULL;