Lines Matching refs:bio_out

130 static int util_flags(BIO *bio_out, unsigned int flags, const char *indent)
134 BIO_printf(bio_out, "%s%s(input flags): ", indent, indent);
136 BIO_printf(bio_out, "<no flags>\n");
144 BIO_printf(bio_out, "[Internal] ");
148 BIO_printf(bio_out, "NUMERIC");
159 BIO_printf(bio_out, "|");
162 BIO_printf(bio_out, "STRING");
167 BIO_printf(bio_out, "|");
170 BIO_printf(bio_out, "NO_INPUT");
179 BIO_printf(bio_out, "|");
180 BIO_printf(bio_out, "<0x%04X>", flags);
183 BIO_printf(bio_out, " <illegal flags!>");
184 BIO_printf(bio_out, "\n");
188 static int util_verbose(ENGINE *e, int verbose, BIO *bio_out,
203 BIO_printf(bio_out, "%s<no control commands>\n", indent);
242 xpos = BIO_puts(bio_out, indent);
245 xpos += BIO_printf(bio_out, ", ");
252 BIO_printf(bio_out, "\n");
253 xpos = BIO_puts(bio_out, indent);
255 xpos += BIO_printf(bio_out, "%s", name);
258 BIO_printf(bio_out, "%s: %s\n", name,
261 if ((verbose >= 3) && !util_flags(bio_out, flags, indent))
276 BIO_printf(bio_out, "\n");
289 BIO *bio_out, const char *indent)
294 BIO_printf(bio_out, "[Error]: internal stack error\n");
308 BIO_printf(bio_out, "[Error]: command name too long\n");
319 BIO_printf(bio_out, "[Success]: %s\n", cmd);
321 BIO_printf(bio_out, "[Failure]: %s\n", cmd);
322 ERR_print_errors(bio_out);
339 BIO *bio_out = NULL;
350 bio_out = BIO_new_fp(stdout, BIO_NOCLOSE);
354 bio_out = BIO_push(tmpbio, bio_out);
417 BIO_printf(bio_out, "(%s) %s\n", id, name);
418 util_do_cmds(e, pre_cmds, bio_out, indent);
420 BIO_printf(bio_out, "Loaded: (%s) %s\n",
475 BIO_printf(bio_out, " [%s]\n", cap_buf);
480 BIO_printf(bio_out, "%s", indent);
482 BIO_printf(bio_out, "[ available ]\n");
483 util_do_cmds(e, post_cmds, bio_out, indent);
486 BIO_printf(bio_out, "[ unavailable ]\n");
492 if ((verbose > 0) && !util_verbose(e, verbose, bio_out, indent))
506 if (bio_out != NULL)
507 BIO_free_all(bio_out);