Lines Matching refs:bio_out
1082 BIO *bio_out = BIO_new(BIO_s_mem()); in x509_name_oneline() local
1086 if(!bio_out) in x509_name_oneline()
1089 rc = X509_NAME_print_ex(bio_out, a, 0, XN_FLAG_SEP_SPLUS_SPC); in x509_name_oneline()
1090 BIO_get_mem_ptr(bio_out, &biomem); in x509_name_oneline()
1100 BIO_free(bio_out); in x509_name_oneline()
3429 BIO *bio_out = BIO_new(BIO_s_mem()); in X509V3_ext() local
3431 if(!bio_out) in X509V3_ext()
3438 if(!X509V3_EXT_print(bio_out, ext, 0, 0)) in X509V3_ext()
3439 ASN1_STRING_print(bio_out, (ASN1_STRING *)X509_EXTENSION_get_data(ext)); in X509V3_ext()
3441 BIO_get_mem_ptr(bio_out, &biomem); in X509V3_ext()
3444 BIO_free(bio_out); in X509V3_ext()