Lines Matching refs:bio_mem
31 BIO *bio_mem = NULL;
49 bio_mem = BIO_new(BIO_s_mem());
50 if (bio_mem == NULL) {
56 ret = PEM_write_bio_X509(bio_mem, x509);
63 p_size = BIO_get_mem_data(bio_mem, &p);
87 BIO_free_all(bio_mem);
96 BIO *bio_mem = NULL;
107 bio_mem = BIO_new(BIO_s_mem());
108 if (bio_mem == NULL) {
114 ret = BIO_puts(bio_mem, pem);
121 x509 = PEM_read_bio_X509(bio_mem, NULL, NULL, NULL);
165 BIO_free_all(bio_mem);