Lines Matching defs:out
19 static int unknown_ext_print(BIO *out, const unsigned char *ext, int extlen,
22 /* Print out a name+value stack */
24 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
32 BIO_printf(out, "%*s", indent, "");
34 BIO_puts(out, "<EMPTY>\n");
39 BIO_printf(out, "\n");
40 BIO_printf(out, "%*s", indent, "");
43 BIO_printf(out, ", ");
46 BIO_puts(out, nval->value);
48 BIO_puts(out, nval->name);
51 BIO_printf(out, "%s:%s", nval->name, nval->value);
60 BIO_printf(out, "%s:%s", nval->name, tmp);
68 /* Main routine: print out a general extension */
70 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag,
87 return unknown_ext_print(out, p, extlen, flag, indent, 0);
94 return unknown_ext_print(out, p, extlen, flag, indent, 1);
102 BIO_printf(out, "%*s%s", indent, "", value);
111 BIO_printf(out, "%*s%s", indent, "", tmp);
121 X509V3_EXT_val_prn(out, nval, indent,
124 if (!method->i2r(method, ext_str, out, indent))
179 static int unknown_ext_print(BIO *out, const unsigned char *ext, int extlen,
189 BIO_printf(out, "%*s<Parse Error>", indent, "");
191 BIO_printf(out, "%*s<Not Supported>", indent, "");
195 return ASN1_parse_dump(out, ext, extlen, indent, -1);
197 return BIO_dump_indent(out, (const char *)ext, extlen, indent);