Lines Matching refs:bio_out
1131 BIO *bio_out = BIO_new(BIO_s_mem()); in x509_name_oneline() local
1135 if(!bio_out) in x509_name_oneline()
1138 rc = X509_NAME_print_ex(bio_out, a, 0, XN_FLAG_SEP_SPLUS_SPC); in x509_name_oneline()
1139 BIO_get_mem_ptr(bio_out, &biomem); in x509_name_oneline()
1149 BIO_free(bio_out); in x509_name_oneline()
3520 BIO *bio_out = BIO_new(BIO_s_mem()); in X509V3_ext() local
3522 if(!bio_out) in X509V3_ext()
3529 if(!X509V3_EXT_print(bio_out, ext, 0, 0)) in X509V3_ext()
3530 ASN1_STRING_print(bio_out, (ASN1_STRING *)X509_EXTENSION_get_data(ext)); in X509V3_ext()
3532 BIO_get_mem_ptr(bio_out, &biomem); in X509V3_ext()
3535 BIO_free(bio_out); in X509V3_ext()