Lines Matching refs:bbio
542 if (s->bbio != NULL)
545 if (s->bbio == s->wbio)
549 BIO_free(s->bbio);
550 s->bbio=NULL;
628 if (s->bbio != NULL)
630 if (s->wbio == s->bbio)
633 s->bbio->next_bio=NULL;
2999 BIO *bbio;
3001 if (s->bbio == NULL)
3003 bbio=BIO_new(BIO_f_buffer());
3004 if (bbio == NULL) return(0);
3005 s->bbio=bbio;
3009 bbio=s->bbio;
3010 if (s->bbio == s->wbio)
3013 (void)BIO_reset(bbio);
3014 /* if (!BIO_set_write_buffer_size(bbio,16*1024)) */
3015 if (!BIO_set_read_buffer_size(bbio,1))
3022 if (s->wbio != bbio)
3023 s->wbio=BIO_push(bbio,s->wbio);
3027 if (s->wbio == bbio)
3028 s->wbio=BIO_pop(bbio);
3035 if (s->bbio == NULL) return;
3037 if (s->bbio == s->wbio)
3045 BIO_free(s->bbio);
3046 s->bbio=NULL;