Lines Matching full:indent
70 unsigned long flag, int indent, int supported);
74 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
82 BIO_printf(out, "%*s", indent, "");
88 BIO_printf(out, "%*s", indent, "");
106 int indent)
116 return unknown_ext_print(out, ext, flag, indent, 0);
126 return unknown_ext_print(out, ext, flag, indent, 1);
133 BIO_printf(out, "%*s%s", indent, "", value);
139 X509V3_EXT_val_prn(out, nval, indent,
142 if (!method->i2r(method, ext_str, out, indent))
160 unsigned long flag, int indent)
169 BIO_printf(bp, "%*s%s:\n", indent, "", title);
170 indent += 4;
177 if (indent && BIO_printf(bp, "%*s", indent, "") <= 0)
184 if (!X509V3_EXT_print(bp, ex, flag, indent + 4)) {
185 BIO_printf(bp, "%*s", indent + 4, "");
195 unsigned long flag, int indent, int supported)
204 BIO_printf(out, "%*s<Parse Error>", indent, "");
206 BIO_printf(out, "%*s<Not Supported>", indent, "");
211 return BIO_hexdump(out, ext->value->data, ext->value->length, indent);
219 int X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent)
225 ret = X509V3_EXT_print(bio_tmp, ext, flag, indent);