Lines Matching defs:bio
29 BIO *bio = BIO_new_fp(stdout, BIO_NOCLOSE);
31 if (bio != NULL && OSSL_trace_set_channel(OSSL_TRACE_CATEGORY_CMP, bio))
33 BIO_free(bio);
128 int OSSL_CMP_print_to_bio(BIO *bio, const char *component, const char *file,
142 if (BIO_printf(bio, "%s:%s:%d:", improve_location_name(component, "CMP"),
146 return BIO_printf(bio, OSSL_CMP_LOG_PREFIX"%s: %s\n",
185 BIO *bio = BIO_new_fp(stderr, BIO_NOCLOSE);
187 if (bio != NULL) {
188 OSSL_CMP_print_to_bio(bio, component, file, line,
190 BIO_free(bio);