Lines Matching refs:indent
20 unsigned long flag, int indent, int supported);
24 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
32 BIO_printf(out, "%*s", indent, "");
40 BIO_printf(out, "%*s", indent, "");
71 int indent)
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))
141 unsigned long flag, int indent)
149 BIO_printf(bp, "%*s%s:\n", indent, "", title);
150 indent += 4;
163 if (indent && BIO_printf(bp, "%*s", indent, "") <= 0)
169 if (!X509V3_EXT_print(bp, ex, flag, indent + 4)) {
170 BIO_printf(bp, "%*s", indent + 4, "");
180 unsigned long flag, int indent, int supported)
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);
205 int X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent)
212 ret = X509V3_EXT_print(bio_tmp, ext, flag, indent);