Home | History | Annotate | Download | only in ssl

Lines Matching defs:bbio

478 	if (s->bbio != NULL)
481 if (s->bbio == s->wbio)
485 BIO_free(s->bbio);
486 s->bbio=NULL;
542 if (s->bbio != NULL)
544 if (s->wbio == s->bbio)
547 s->bbio->next_bio=NULL;
2469 BIO *bbio;
2471 if (s->bbio == NULL)
2473 bbio=BIO_new(BIO_f_buffer());
2474 if (bbio == NULL) return(0);
2475 s->bbio=bbio;
2479 bbio=s->bbio;
2480 if (s->bbio == s->wbio)
2483 (void)BIO_reset(bbio);
2484 /* if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2485 if (!BIO_set_read_buffer_size(bbio,1))
2492 if (s->wbio != bbio)
2493 s->wbio=BIO_push(bbio,s->wbio);
2497 if (s->wbio == bbio)
2498 s->wbio=BIO_pop(bbio);
2505 if (s->bbio == NULL) return;
2507 if (s->bbio == s->wbio)
2515 BIO_free(s->bbio);
2516 s->bbio=NULL;