Home | History | Annotate | Download | only in ssl

Lines Matching defs:bbio

525 	if (s->bbio != NULL)
528 if (s->bbio == s->wbio)
532 BIO_free(s->bbio);
533 s->bbio=NULL;
597 if (s->bbio != NULL)
599 if (s->wbio == s->bbio)
602 s->bbio->next_bio=NULL;
2684 BIO *bbio;
2686 if (s->bbio == NULL)
2688 bbio=BIO_new(BIO_f_buffer());
2689 if (bbio == NULL) return(0);
2690 s->bbio=bbio;
2694 bbio=s->bbio;
2695 if (s->bbio == s->wbio)
2698 (void)BIO_reset(bbio);
2699 /* if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2700 if (!BIO_set_read_buffer_size(bbio,1))
2707 if (s->wbio != bbio)
2708 s->wbio=BIO_push(bbio,s->wbio);
2712 if (s->wbio == bbio)
2713 s->wbio=BIO_pop(bbio);
2720 if (s->bbio == NULL) return;
2722 if (s->bbio == s->wbio)
2730 BIO_free(s->bbio);
2731 s->bbio=NULL;