Lines Matching defs:bio1
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)
708 assert(bio1 != NULL);
711 b1 = bio1->ptr;
747 b2->peer = bio1;
751 bio1->init = 1;
792 BIO *bio1 = NULL, *bio2 = NULL;
796 bio1 = BIO_new(BIO_s_bio());
797 if (bio1 == NULL)
805 r = BIO_set_write_buf_size(bio1, writebuf1);
816 r = BIO_make_bio_pair(bio1, bio2);
824 if (bio1)
826 BIO_free(bio1);
827 bio1 = NULL;
836 *bio1_p = bio1;