Lines Matching refs:tap_out
22 static BIO *tap_out = NULL;
27 tap_out = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
30 tap_out = BIO_push(BIO_new(BIO_f_linebuffer()), tap_out);
33 tap_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out);
36 bio_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out);
47 BIO_set_indent(tap_out, level);
60 BIO_free_all(tap_out);
86 return BIO_vprintf(tap_out, fmt, ap);
96 return BIO_flush(tap_out);