Home | History | Annotate | Download | only in ssl

Lines Matching refs:bbio

531 	if (s->bbio != NULL)
534 if (s->bbio == s->wbio)
538 BIO_free(s->bbio);
539 s->bbio=NULL;
615 if (s->bbio != NULL)
617 if (s->wbio == s->bbio)
620 s->bbio->next_bio=NULL;
2903 BIO *bbio;
2905 if (s->bbio == NULL)
2907 bbio=BIO_new(BIO_f_buffer());
2908 if (bbio == NULL) return(0);
2909 s->bbio=bbio;
2913 bbio=s->bbio;
2914 if (s->bbio == s->wbio)
2917 (void)BIO_reset(bbio);
2918 /* if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2919 if (!BIO_set_read_buffer_size(bbio,1))
2926 if (s->wbio != bbio)
2927 s->wbio=BIO_push(bbio,s->wbio);
2931 if (s->wbio == bbio)
2932 s->wbio=BIO_pop(bbio);
2939 if (s->bbio == NULL) return;
2941 if (s->bbio == s->wbio)
2949 BIO_free(s->bbio);
2950 s->bbio=NULL;