Lines Matching refs:bio_out
982 BIO *bio_out = BIO_new(BIO_s_mem()); in x509_name_oneline() local
986 if(!bio_out) in x509_name_oneline()
989 rc = X509_NAME_print_ex(bio_out, a, 0, XN_FLAG_SEP_SPLUS_SPC); in x509_name_oneline()
990 BIO_get_mem_ptr(bio_out, &biomem); in x509_name_oneline()
1000 BIO_free(bio_out); in x509_name_oneline()
3002 BIO *bio_out = BIO_new(BIO_s_mem()); in X509V3_ext() local
3004 if(!bio_out) in X509V3_ext()
3011 if(!X509V3_EXT_print(bio_out, ext, 0, 0)) in X509V3_ext()
3012 ASN1_STRING_print(bio_out, (ASN1_STRING *)X509_EXTENSION_get_data(ext)); in X509V3_ext()
3014 BIO_get_mem_ptr(bio_out, &biomem); in X509V3_ext()
3031 BIO_free(bio_out); in X509V3_ext()