Home | History | Annotate | Download | only in bio

Lines Matching refs:bio2

103 static int bio_make_pair(BIO *bio1, BIO *bio2);
559 * Or let BIO_free(bio1); BIO_free(bio2); do the job. */
704 static int bio_make_pair(BIO *bio1, BIO *bio2)
709 assert(bio2 != NULL);
712 b2 = bio2->ptr;
744 b1->peer = bio2;
752 bio2->init = 1;
792 BIO *bio1 = NULL, *bio2 = NULL;
799 bio2 = BIO_new(BIO_s_bio());
800 if (bio2 == NULL)
811 r = BIO_set_write_buf_size(bio2, writebuf2);
816 r = BIO_make_bio_pair(bio1, bio2);
829 if (bio2)
831 BIO_free(bio2);
832 bio2 = NULL;
837 *bio2_p = bio2;