Home | History | Annotate | Download | only in ssl

Lines Matching defs:bbio

1578     if (sc->bbio != NULL)
1584 /* Re-attach |bbio| to the new |wbio|. */
1585 if (sc->bbio != NULL)
1586 sc->wbio = BIO_push(sc->bbio, sc->wbio);
1660 if (sc->bbio != NULL) {
1662 * If |bbio| is active, the true caller-configured BIO is its
1665 return BIO_next(sc->bbio);
5332 BIO *bbio;
5334 if (s->bbio != NULL) {
5339 bbio = BIO_new(BIO_f_buffer());
5340 if (bbio == NULL || BIO_set_read_buffer_size(bbio, 1) <= 0) {
5341 BIO_free(bbio);
5345 s->bbio = bbio;
5346 s->wbio = BIO_push(bbio, s->wbio);
5356 if (s->bbio == NULL)
5362 BIO_free(s->bbio);
5363 s->bbio = NULL;