Lines Matching refs:indent
29 void *u, const void *v, int len, int indent)
38 if (indent < 0)
39 indent = 0;
40 else if (indent > 64)
41 indent = 64;
43 dump_width = DUMP_WIDTH_LESS_INDENT(indent);
48 n = BIO_snprintf(buf, sizeof(buf), "%*s%04x - ", indent, "",
108 int BIO_dump_indent_fp(FILE *fp, const void *s, int len, int indent)
110 return BIO_dump_indent_cb(write_fp, fp, s, len, indent);
124 int BIO_dump_indent(BIO *bp, const void *s, int len, int indent)
126 return BIO_dump_indent_cb(write_bio, bp, s, len, indent);
129 int BIO_hex_string(BIO *out, int indent, int width, const void *data,
140 BIO_printf(out, "%*s", indent, "");
150 BIO_printf(out, "%*s", indent, "");