Home | History | Annotate | Download | only in ssl

Lines Matching refs:bbio

528 	if (s->bbio != NULL)
531 if (s->bbio == s->wbio)
535 BIO_free(s->bbio);
536 s->bbio=NULL;
605 if (s->bbio != NULL)
607 if (s->wbio == s->bbio)
610 s->bbio->next_bio=NULL;
2824 BIO *bbio;
2826 if (s->bbio == NULL)
2828 bbio=BIO_new(BIO_f_buffer());
2829 if (bbio == NULL) return(0);
2830 s->bbio=bbio;
2834 bbio=s->bbio;
2835 if (s->bbio == s->wbio)
2838 (void)BIO_reset(bbio);
2839 /* if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2840 if (!BIO_set_read_buffer_size(bbio,1))
2847 if (s->wbio != bbio)
2848 s->wbio=BIO_push(bbio,s->wbio);
2852 if (s->wbio == bbio)
2853 s->wbio=BIO_pop(bbio);
2860 if (s->bbio == NULL) return;
2862 if (s->bbio == s->wbio)
2870 BIO_free(s->bbio);
2871 s->bbio=NULL;