Symbol: indent
bin/ksh/tree.c
100
fptreef(shf, indent, "%N(");
bin/ksh/tree.c
102
fptreef(shf, indent, "%S%c", *w,
bin/ksh/tree.c
104
fptreef(shf, indent + INDENT, "%;%T%N;;", t1->left);
bin/ksh/tree.c
106
fptreef(shf, indent, "%Nesac ");
bin/ksh/tree.c
111
fptreef(shf, indent + 3, "if %T", t->left);
bin/ksh/tree.c
115
fptreef(shf, indent, "%;");
bin/ksh/tree.c
116
fptreef(shf, indent + INDENT, "then%N%T",
bin/ksh/tree.c
122
fptreef(shf, indent, "%;");
bin/ksh/tree.c
124
fptreef(shf, indent + 5, "elif %T", t->left);
bin/ksh/tree.c
127
fptreef(shf, indent, "%;");
bin/ksh/tree.c
128
fptreef(shf, indent + INDENT, "else%;%T", t->right);
bin/ksh/tree.c
130
fptreef(shf, indent, "%;fi ");
bin/ksh/tree.c
135
fptreef(shf, indent + 6, "%s %T",
bin/ksh/tree.c
138
fptreef(shf, indent, "%;do");
bin/ksh/tree.c
139
fptreef(shf, indent + INDENT, "%;%T", t->right);
bin/ksh/tree.c
140
fptreef(shf, indent, "%;done ");
bin/ksh/tree.c
143
fptreef(shf, indent + INDENT, "{%;%T", t->left);
bin/ksh/tree.c
144
fptreef(shf, indent, "%;} ");
bin/ksh/tree.c
147
fptreef(shf, indent, "%T|& ", t->left);
bin/ksh/tree.c
150
fptreef(shf, indent, "%T& ", t->left);
bin/ksh/tree.c
153
fptreef(shf, indent,
bin/ksh/tree.c
158
fptreef(shf, indent, "time %T", t->left);
bin/ksh/tree.c
161
fptreef(shf, indent, "<botch>");
bin/ksh/tree.c
168
pioact(shf, indent, *ioact++);
bin/ksh/tree.c
177
fptreef(shf, indent, "%s",
bin/ksh/tree.c
192
pioact(struct shf *shf, int indent, struct ioword *iop)
bin/ksh/tree.c
207
fptreef(shf, indent, "< ");
bin/ksh/tree.c
211
fptreef(shf, indent, "<<- ");
bin/ksh/tree.c
213
fptreef(shf, indent, "<< ");
bin/ksh/tree.c
216
fptreef(shf, indent, ">> ");
bin/ksh/tree.c
220
fptreef(shf, indent, ">| ");
bin/ksh/tree.c
222
fptreef(shf, indent, "> ");
bin/ksh/tree.c
225
fptreef(shf, indent, "<> ");
bin/ksh/tree.c
229
fptreef(shf, indent, "<&");
bin/ksh/tree.c
231
fptreef(shf, indent, ">&");
bin/ksh/tree.c
237
fptreef(shf, indent, "%S ", iop->delim);
bin/ksh/tree.c
239
fptreef(shf, indent, (iop->flag & IONAMEXP) ? "%s " : "%S ",
bin/ksh/tree.c
27
ptree(struct op *t, int indent, struct shf *shf)
bin/ksh/tree.c
337
fptreef(struct shf *shf, int indent, const char *fmt, ...)
bin/ksh/tree.c
342
vfptreef(shf, indent, fmt, va);
bin/ksh/tree.c
362
vfptreef(struct shf *shf, int indent, const char *fmt, va_list va)
bin/ksh/tree.c
40
fptreef(shf, indent, "%S ", *w++);
bin/ksh/tree.c
400
ptree(va_arg(va, struct op *), indent, shf);
bin/ksh/tree.c
412
for (i = indent; i >= 8; i -= 8)
bin/ksh/tree.c
419
pioact(shf, indent, va_arg(va, struct ioword *));
bin/ksh/tree.c
42
fptreef(shf, indent, "#no-vars# ");
bin/ksh/tree.c
45
fptreef(shf, indent, "%S ", *w++);
bin/ksh/tree.c
47
fptreef(shf, indent, "#no-args# ");
bin/ksh/tree.c
53
fptreef(shf, indent + 2, "( %T) ", t->left);
bin/ksh/tree.c
56
fptreef(shf, indent, "%T| ", t->left);
bin/ksh/tree.c
60
fptreef(shf, indent, "%T%;", t->left);
bin/ksh/tree.c
65
fptreef(shf, indent, "%T%s %T",
bin/ksh/tree.c
69
fptreef(shf, indent, "! ");
bin/ksh/tree.c
76
fptreef(shf, indent, "[[");
bin/ksh/tree.c
78
fptreef(shf, indent, " %S", t->args[i]);
bin/ksh/tree.c
79
fptreef(shf, indent, " ]] ");
bin/ksh/tree.c
83
fptreef(shf, indent, "select %s ", t->str);
bin/ksh/tree.c
87
fptreef(shf, indent, "for %s ", t->str);
bin/ksh/tree.c
89
fptreef(shf, indent, "in ");
bin/ksh/tree.c
91
fptreef(shf, indent, "%S ", *w++);
bin/ksh/tree.c
92
fptreef(shf, indent, "%;");
bin/ksh/tree.c
94
fptreef(shf, indent + INDENT, "do%N%T", t->left);
bin/ksh/tree.c
95
fptreef(shf, indent, "%;done ");
bin/ksh/tree.c
98
fptreef(shf, indent, "case %S in", t->str);
lib/libcbor/src/cbor.c
304
static void _cbor_nested_describe(cbor_item_t *item, FILE *out, int indent) {
lib/libcbor/src/cbor.c
308
fprintf(out, "%*s[CBOR_TYPE_UINT] ", indent, " ");
lib/libcbor/src/cbor.c
314
fprintf(out, "%*s[CBOR_TYPE_NEGINT] ", indent, " ");
lib/libcbor/src/cbor.c
320
fprintf(out, "%*s[CBOR_TYPE_BYTESTRING] ", indent, " ");
lib/libcbor/src/cbor.c
326
indent + 4);
lib/libcbor/src/cbor.c
333
fprintf(out, "%*s[CBOR_TYPE_STRING] ", indent, " ");
lib/libcbor/src/cbor.c
339
indent + 4);
lib/libcbor/src/cbor.c
346
fprintf(out, "%*s", indent + 4, " ");
lib/libcbor/src/cbor.c
354
fprintf(out, "%*s[CBOR_TYPE_ARRAY] ", indent, " ");
lib/libcbor/src/cbor.c
362
_cbor_nested_describe(cbor_array_handle(item)[i], out, indent + 4);
lib/libcbor/src/cbor.c
366
fprintf(out, "%*s[CBOR_TYPE_MAP] ", indent, " ");
lib/libcbor/src/cbor.c
374
_cbor_nested_describe(cbor_map_handle(item)[i].key, out, indent + 4);
lib/libcbor/src/cbor.c
375
_cbor_nested_describe(cbor_map_handle(item)[i].value, out, indent + 4);
lib/libcbor/src/cbor.c
380
fprintf(out, "%*s[CBOR_TYPE_TAG] ", indent, " ");
lib/libcbor/src/cbor.c
382
_cbor_nested_describe(cbor_move(cbor_tag_item(item)), out, indent + 4);
lib/libcbor/src/cbor.c
386
fprintf(out, "%*s[CBOR_TYPE_FLOAT_CTRL] ", indent, " ");
lib/libcrypto/asn1/a_strex.c
416
do_indent(char_io *io_ch, void *arg, int indent)
lib/libcrypto/asn1/a_strex.c
419
for (i = 0; i < indent; i++)
lib/libcrypto/asn1/a_strex.c
429
do_name_ex(char_io *io_ch, void *arg, const X509_NAME *n, int indent,
lib/libcrypto/asn1/a_strex.c
443
if (indent < 0)
lib/libcrypto/asn1/a_strex.c
444
indent = 0;
lib/libcrypto/asn1/a_strex.c
445
outlen = indent;
lib/libcrypto/asn1/a_strex.c
446
if (!do_indent(io_ch, arg, indent))
lib/libcrypto/asn1/a_strex.c
462
indent = 0;
lib/libcrypto/asn1/a_strex.c
470
indent = 0;
lib/libcrypto/asn1/a_strex.c
478
indent = 0;
lib/libcrypto/asn1/a_strex.c
510
if (!do_indent(io_ch, arg, indent))
lib/libcrypto/asn1/a_strex.c
512
outlen += indent;
lib/libcrypto/asn1/a_strex.c
619
X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
lib/libcrypto/asn1/a_strex.c
623
return X509_NAME_print(out, nm, indent);
lib/libcrypto/asn1/a_strex.c
624
return do_name_ex(send_bio_chars, out, nm, indent, flags);
lib/libcrypto/asn1/a_strex.c
629
X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent,
lib/libcrypto/asn1/a_strex.c
638
ret = X509_NAME_print(btmp, nm, indent);
lib/libcrypto/asn1/a_strex.c
642
return do_name_ex(send_fp_chars, fp, nm, indent, flags);
lib/libcrypto/asn1/asn1.h
267
int fname##_print_ctx(BIO *out, stname *x, int indent, \
lib/libcrypto/asn1/asn1.h
791
int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent);
lib/libcrypto/asn1/asn1.h
792
int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump);
lib/libcrypto/asn1/asn1.h
857
int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent,
lib/libcrypto/asn1/asn1_par.c
106
ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent)
lib/libcrypto/asn1/asn1_par.c
108
return (asn1_parse2(bp, &pp, len, 0, 0, indent, 0));
lib/libcrypto/asn1/asn1_par.c
113
ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump)
lib/libcrypto/asn1/asn1_par.c
115
return (asn1_parse2(bp, &pp, len, 0, 0, indent, dump));
lib/libcrypto/asn1/asn1_par.c
121
int depth, int indent, int dump)
lib/libcrypto/asn1/asn1_par.c
168
if (!asn1_print_info(bp, tag, xclass, j, (indent) ? depth : 0))
lib/libcrypto/asn1/asn1_par.c
184
indent, dump);
lib/libcrypto/asn1/asn1_par.c
198
indent, dump);
lib/libcrypto/asn1/asn1_par.c
66
int indent);
lib/libcrypto/asn1/asn1_par.c
68
int offset, int depth, int indent, int dump);
lib/libcrypto/asn1/asn1_par.c
72
int indent)
lib/libcrypto/asn1/asn1_par.c
83
if (!BIO_indent(bp, indent, 128))
lib/libcrypto/asn1/asn1t.h
721
typedef int ASN1_ex_print_func(BIO *out, ASN1_VALUE **pval, int indent,
lib/libcrypto/asn1/asn1t.h
729
const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx);
lib/libcrypto/asn1/asn1t.h
784
int indent;
lib/libcrypto/asn1/asn1t.h
955
fname##_print_ctx(BIO *out, stname *x, int indent, \
lib/libcrypto/asn1/asn1t.h
958
return ASN1_item_print(out, (ASN1_VALUE *)x, indent, \
lib/libcrypto/asn1/t_x509.c
110
x509_print_uids(BIO *bp, const X509 *x, int indent)
lib/libcrypto/asn1/t_x509.c
116
if (BIO_printf(bp, "%*sIssuer Unique ID: ", indent, "") <= 0)
lib/libcrypto/asn1/t_x509.c
118
if (!X509_signature_dump(bp, issuerUID, indent + 4))
lib/libcrypto/asn1/t_x509.c
122
if (BIO_printf(bp, "%*sSubject Unique ID: ", indent, "") <= 0)
lib/libcrypto/asn1/t_x509.c
124
if (!X509_signature_dump(bp, subjectUID, indent + 4))
lib/libcrypto/asn1/t_x509.c
345
X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent)
lib/libcrypto/asn1/t_x509.c
356
if (BIO_indent(bp, indent, indent) <= 0)
lib/libcrypto/asn1/t_x509a.c
107
BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
lib/libcrypto/asn1/t_x509a.c
109
BIO_printf(out, "%*sAlias: %.*s\n", indent, "",
lib/libcrypto/asn1/t_x509a.c
112
BIO_printf(out, "%*sKey Id: ", indent, "");
lib/libcrypto/asn1/t_x509a.c
70
X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent)
lib/libcrypto/asn1/t_x509a.c
79
indent, "", indent + 2, "");
lib/libcrypto/asn1/t_x509a.c
91
BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
lib/libcrypto/asn1/t_x509a.c
95
indent, "", indent + 2, "");
lib/libcrypto/asn1/tasn_prn.c
104
return asn1_item_print_ctx(out, &ifld, indent, it, NULL, sname,
lib/libcrypto/asn1/tasn_prn.c
110
asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, const ASN1_ITEM *it,
lib/libcrypto/asn1/tasn_prn.c
123
parg.indent = indent;
lib/libcrypto/asn1/tasn_prn.c
133
!asn1_print_fsname(out, indent, fname, sname, pctx))
lib/libcrypto/asn1/tasn_prn.c
144
if (!asn1_template_print_ctx(out, fld, indent,
lib/libcrypto/asn1/tasn_prn.c
151
indent, fname, sname, pctx))
lib/libcrypto/asn1/tasn_prn.c
157
!asn1_print_fsname(out, indent, fname, sname, pctx))
lib/libcrypto/asn1/tasn_prn.c
162
i = ef->asn1_ex_print(out, fld, indent, "", pctx);
lib/libcrypto/asn1/tasn_prn.c
185
if (!asn1_template_print_ctx(out, tmpfld, indent, tt, pctx))
lib/libcrypto/asn1/tasn_prn.c
192
!asn1_print_fsname(out, indent, fname, sname, pctx))
lib/libcrypto/asn1/tasn_prn.c
220
if (!asn1_template_print_ctx(out, tmpfld, indent + 2,
lib/libcrypto/asn1/tasn_prn.c
225
if (BIO_printf(out, "%*s}\n", indent, "") < 0)
lib/libcrypto/asn1/tasn_prn.c
245
asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
lib/libcrypto/asn1/tasn_prn.c
273
indent, "", tname, tt->field_name) <= 0)
lib/libcrypto/asn1/tasn_prn.c
275
} else if (BIO_printf(out, "%*s%s:\n", indent, "",
lib/libcrypto/asn1/tasn_prn.c
284
if (!asn1_item_print_ctx(out, &skitem, indent + 2,
lib/libcrypto/asn1/tasn_prn.c
288
if (!i && BIO_printf(out, "%*s<EMPTY>\n", indent + 2, "") <= 0)
lib/libcrypto/asn1/tasn_prn.c
291
if (BIO_printf(out, "%*s}\n", indent, "") <= 0)
lib/libcrypto/asn1/tasn_prn.c
296
return asn1_item_print_ctx(out, fld, indent, tt->item,
lib/libcrypto/asn1/tasn_prn.c
301
asn1_print_fsname(BIO *out, int indent, const char *fname, const char *sname,
lib/libcrypto/asn1/tasn_prn.c
304
if (indent < 0)
lib/libcrypto/asn1/tasn_prn.c
306
if (!BIO_indent(out, indent, indent))
lib/libcrypto/asn1/tasn_prn.c
385
asn1_print_obstring_ctx(BIO *out, ASN1_STRING *str, int indent,
lib/libcrypto/asn1/tasn_prn.c
396
indent + 2) <= 0)
lib/libcrypto/asn1/tasn_prn.c
403
int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx)
lib/libcrypto/asn1/tasn_prn.c
410
if (!asn1_print_fsname(out, indent, fname, sname, pctx))
lib/libcrypto/asn1/tasn_prn.c
419
return pf->prim_print(out, fld, it, indent, pctx);
lib/libcrypto/asn1/tasn_prn.c
489
ret = asn1_print_obstring_ctx(out, str, indent, pctx);
lib/libcrypto/asn1/tasn_prn.c
499
indent, 0) <= 0)
lib/libcrypto/asn1/tasn_prn.c
78
static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
lib/libcrypto/asn1/tasn_prn.c
82
int asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
lib/libcrypto/asn1/tasn_prn.c
86
const ASN1_ITEM *it, int indent, const char *fname, const char *sname,
lib/libcrypto/asn1/tasn_prn.c
89
static int asn1_print_fsname(BIO *out, int indent, const char *fname,
lib/libcrypto/asn1/tasn_prn.c
93
ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, const ASN1_ITEM *it,
lib/libcrypto/asn1/x_bignum.c
196
bn_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent,
lib/libcrypto/asn1/x_bignum.c
80
int indent, const ASN1_PCTX *pctx);
lib/libcrypto/asn1/x_long.c
234
long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent,
lib/libcrypto/asn1/x_long.c
85
int indent, const ASN1_PCTX *pctx);
lib/libcrypto/asn1/x_name.c
447
x509_name_ex_print(BIO *out, ASN1_VALUE **pval, int indent, const char *fname,
lib/libcrypto/asn1/x_name.c
450
if (X509_NAME_print_ex(out, (X509_NAME *)*pval, indent,
lib/libcrypto/asn1/x_name.c
88
static int x509_name_ex_print(BIO *out, ASN1_VALUE **pval, int indent,
lib/libcrypto/bio/b_dump.c
102
if (indent > 6)
lib/libcrypto/bio/b_dump.c
103
bytes_per_line -= (indent - 3) / 4;
lib/libcrypto/bio/b_dump.c
134
if ((written = BIO_printf(bio, "%*s%04x - ", indent, "",
lib/libcrypto/bio/b_dump.c
189
indent, "", dumped + trailing)) < 0)
lib/libcrypto/bio/b_dump.c
78
BIO_dump_indent(BIO *bio, const char *s, int len, int indent)
lib/libcrypto/bio/b_dump.c
91
if (indent < 0)
lib/libcrypto/bio/b_dump.c
92
indent = 0;
lib/libcrypto/bio/b_dump.c
93
if (indent > 64)
lib/libcrypto/bio/b_dump.c
94
indent = 64;
lib/libcrypto/bio/bio.h
549
int BIO_indent(BIO *b, int indent, int max);
lib/libcrypto/bio/bio.h
593
int BIO_dump_indent(BIO *b, const char *bytes, int len, int indent);
lib/libcrypto/bio/bio_lib.c
528
BIO_indent(BIO *bio, int indent, int max)
lib/libcrypto/bio/bio_lib.c
530
if (indent > max)
lib/libcrypto/bio/bio_lib.c
531
indent = max;
lib/libcrypto/bio/bio_lib.c
532
if (indent <= 0)
lib/libcrypto/bio/bio_lib.c
534
if (BIO_printf(bio, "%*s", indent, "") <= 0)
lib/libcrypto/bn/bn_local.h
340
int bn_printf(BIO *bio, const BIGNUM *bn, int indent, const char *fmt, ...)
lib/libcrypto/bn/bn_print.c
125
bn_printf(BIO *bio, const BIGNUM *bn, int indent, const char *fmt, ...)
lib/libcrypto/bn/bn_print.c
133
if (!BIO_indent(bio, indent, 128))
lib/libcrypto/bn/bn_print.c
148
return bn_print_bignum(bio, bn, indent);
lib/libcrypto/bn/bn_print.c
62
bn_print_bignum(BIO *bio, const BIGNUM *bn, int indent)
lib/libcrypto/bn/bn_print.c
76
if (indent > 124)
lib/libcrypto/bn/bn_print.c
77
indent = 124;
lib/libcrypto/bn/bn_print.c
78
indent += 4;
lib/libcrypto/bn/bn_print.c
79
if (indent < 0)
lib/libcrypto/bn/bn_print.c
80
indent = 0;
lib/libcrypto/bn/bn_print.c
98
if (BIO_printf(bio, "\n%*s", indent, "") <= 0)
lib/libcrypto/cms/cms.h
94
int CMS_ContentInfo_print_ctx(BIO *out, CMS_ContentInfo *x, int indent, const ASN1_PCTX *pctx);
lib/libcrypto/cms/cms_lib.c
101
return ASN1_item_print(out, (ASN1_VALUE *)x, indent,
lib/libcrypto/cms/cms_lib.c
99
CMS_ContentInfo_print_ctx(BIO *out, CMS_ContentInfo *x, int indent, const ASN1_PCTX *pctx)
lib/libcrypto/ct/ct.h
321
void SCT_print(const SCT *sct, BIO *out, int indent, const CTLOG_STORE *logs);
lib/libcrypto/ct/ct.h
330
void SCT_LIST_print(const STACK_OF(SCT) *sct_list, BIO *out, int indent,
lib/libcrypto/ct/ct_prn.c
152
SCT_print(const SCT *sct, BIO *out, int indent, const CTLOG_STORE *log_store)
lib/libcrypto/ct/ct_prn.c
161
BIO_printf(out, "%*sSigned Certificate Timestamp:", indent, "");
lib/libcrypto/ct/ct_prn.c
162
BIO_printf(out, "\n%*sVersion : ", indent + 4, "");
lib/libcrypto/ct/ct_prn.c
165
BIO_printf(out, "unknown\n%*s", indent + 16, "");
lib/libcrypto/ct/ct_prn.c
166
BIO_hex_string(out, indent + 16, 16, sct->sct, sct->sct_len);
lib/libcrypto/ct/ct_prn.c
173
BIO_printf(out, "\n%*sLog : %s", indent + 4, "",
lib/libcrypto/ct/ct_prn.c
177
BIO_printf(out, "\n%*sLog ID : ", indent + 4, "");
lib/libcrypto/ct/ct_prn.c
178
BIO_hex_string(out, indent + 16, 16, sct->log_id, sct->log_id_len);
lib/libcrypto/ct/ct_prn.c
180
BIO_printf(out, "\n%*sTimestamp : ", indent + 4, "");
lib/libcrypto/ct/ct_prn.c
183
BIO_printf(out, "\n%*sExtensions: ", indent + 4, "");
lib/libcrypto/ct/ct_prn.c
187
BIO_hex_string(out, indent + 16, 16, sct->ext, sct->ext_len);
lib/libcrypto/ct/ct_prn.c
189
BIO_printf(out, "\n%*sSignature : ", indent + 4, "");
lib/libcrypto/ct/ct_prn.c
191
BIO_printf(out, "\n%*s ", indent + 4, "");
lib/libcrypto/ct/ct_prn.c
192
BIO_hex_string(out, indent + 16, 16, sct->sig, sct->sig_len);
lib/libcrypto/ct/ct_prn.c
197
SCT_LIST_print(const STACK_OF(SCT) *sct_list, BIO *out, int indent,
lib/libcrypto/ct/ct_prn.c
206
SCT_print(sct, out, indent, log_store);
lib/libcrypto/ct/ct_prn.c
74
BIO_hex_string(BIO *out, int indent, int width, unsigned char *data,
lib/libcrypto/ct/ct_prn.c
84
BIO_printf(out, "%*s", indent, "");
lib/libcrypto/ct/ct_prn.c
94
BIO_printf(out, "%*s", indent, "");
lib/libcrypto/ct/ct_x509v3.c
82
int indent)
lib/libcrypto/ct/ct_x509v3.c
84
SCT_LIST_print(sct_list, out, indent, "\n", NULL);
lib/libcrypto/dh/dh_ameth.c
331
do_dh_print(BIO *bp, const DH *x, int indent, ASN1_PCTX *ctx, int ptype)
lib/libcrypto/dh/dh_ameth.c
359
if (!BIO_indent(bp, indent, 128))
lib/libcrypto/dh/dh_ameth.c
363
indent += 4;
lib/libcrypto/dh/dh_ameth.c
365
if (!bn_printf(bp, priv_key, indent, "private-key:"))
lib/libcrypto/dh/dh_ameth.c
367
if (!bn_printf(bp, pub_key, indent, "public-key:"))
lib/libcrypto/dh/dh_ameth.c
370
if (!bn_printf(bp, x->p, indent, "prime:"))
lib/libcrypto/dh/dh_ameth.c
372
if (!bn_printf(bp, x->g, indent, "generator:"))
lib/libcrypto/dh/dh_ameth.c
375
if (!BIO_indent(bp, indent, 128))
lib/libcrypto/dh/dh_ameth.c
456
dh_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/dh/dh_ameth.c
458
return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 0);
lib/libcrypto/dh/dh_ameth.c
462
dh_public_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/dh/dh_ameth.c
464
return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 1);
lib/libcrypto/dh/dh_ameth.c
468
dh_private_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/dh/dh_ameth.c
470
return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 2);
lib/libcrypto/dsa/dsa_ameth.c
493
dsa_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/dsa/dsa_ameth.c
495
return do_dsa_print(bp, pkey->pkey.dsa, indent, 0);
lib/libcrypto/dsa/dsa_ameth.c
499
dsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/dsa/dsa_ameth.c
501
return do_dsa_print(bp, pkey->pkey.dsa, indent, 1);
lib/libcrypto/dsa/dsa_ameth.c
505
dsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/dsa/dsa_ameth.c
507
return do_dsa_print(bp, pkey->pkey.dsa, indent, 2);
lib/libcrypto/dsa/dsa_ameth.c
592
int indent, ASN1_PCTX *pctx)
lib/libcrypto/dsa/dsa_ameth.c
611
if (!bn_printf(bp, dsa_sig->r, indent, "r: "))
lib/libcrypto/dsa/dsa_ameth.c
613
if (!bn_printf(bp, dsa_sig->s, indent, "s: "))
lib/libcrypto/dsa/dsa_ameth.c
620
return X509_signature_dump(bp, sig, indent);
lib/libcrypto/ec/ec_ameth.c
588
eckey_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/ec/ec_ameth.c
590
return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 0);
lib/libcrypto/ec/ec_ameth.c
594
eckey_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/ec/ec_ameth.c
596
return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 1);
lib/libcrypto/ec/ec_ameth.c
601
eckey_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/ec/ec_ameth.c
603
return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 2);
lib/libcrypto/ec/ecx_methods.c
299
ecx_buf_print(BIO *bio, const uint8_t *buf, size_t buf_len, int indent)
lib/libcrypto/ec/ecx_methods.c
306
if (indent > 60)
lib/libcrypto/ec/ecx_methods.c
307
indent = 60;
lib/libcrypto/ec/ecx_methods.c
308
indent += 4;
lib/libcrypto/ec/ecx_methods.c
309
if (indent < 0)
lib/libcrypto/ec/ecx_methods.c
310
indent = 0;
lib/libcrypto/ec/ecx_methods.c
317
if (BIO_printf(bio, "%s%*s", nl, indent, "") < 0)
lib/libcrypto/ec/ecx_methods.c
334
ecx_pub_print(BIO *bio, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/ec/ecx_methods.c
344
indent, "") > 0;
lib/libcrypto/ec/ecx_methods.c
346
if (BIO_printf(bio, "%*s%s Public-Key:\n", indent, "", name) <= 0)
lib/libcrypto/ec/ecx_methods.c
348
if (BIO_printf(bio, "%*spub:\n", indent, "") <= 0)
lib/libcrypto/ec/ecx_methods.c
350
if (!ecx_buf_print(bio, ecx_key->pub_key, ecx_key->pub_key_len, indent))
lib/libcrypto/ec/ecx_methods.c
446
ecx_priv_print(BIO *bio, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/ec/ecx_methods.c
456
indent, "") > 0;
lib/libcrypto/ec/ecx_methods.c
458
if (BIO_printf(bio, "%*s%s Private-Key:\n", indent, "", name) <= 0)
lib/libcrypto/ec/ecx_methods.c
460
if (BIO_printf(bio, "%*spriv:\n", indent, "") <= 0)
lib/libcrypto/ec/ecx_methods.c
462
if (!ecx_buf_print(bio, ecx_key->priv_key, ecx_key->priv_key_len, indent))
lib/libcrypto/ec/ecx_methods.c
464
if (BIO_printf(bio, "%*spub:\n", indent, "") <= 0)
lib/libcrypto/ec/ecx_methods.c
466
if (!ecx_buf_print(bio, ecx_key->pub_key, ecx_key->pub_key_len, indent))
lib/libcrypto/evp/evp.h
822
int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey, int indent,
lib/libcrypto/evp/evp.h
824
int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey, int indent,
lib/libcrypto/evp/evp.h
826
int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey, int indent,
lib/libcrypto/evp/evp_local.h
103
int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
lib/libcrypto/evp/evp_local.h
108
int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
lib/libcrypto/evp/evp_local.h
124
int (*param_print)(BIO *out, const EVP_PKEY *pkey, int indent,
lib/libcrypto/evp/evp_local.h
127
const ASN1_STRING *sig, int indent, ASN1_PCTX *pctx);
lib/libcrypto/evp/p_lib.c
805
unsup_alg(BIO *out, const EVP_PKEY *pkey, int indent, const char *kstr)
lib/libcrypto/evp/p_lib.c
807
if (!BIO_indent(out, indent, 128))
lib/libcrypto/evp/p_lib.c
815
EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey, int indent,
lib/libcrypto/evp/p_lib.c
819
return pkey->ameth->pub_print(out, pkey, indent, pctx);
lib/libcrypto/evp/p_lib.c
821
return unsup_alg(out, pkey, indent, "Public Key");
lib/libcrypto/evp/p_lib.c
826
EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey, int indent,
lib/libcrypto/evp/p_lib.c
830
return pkey->ameth->priv_print(out, pkey, indent, pctx);
lib/libcrypto/evp/p_lib.c
832
return unsup_alg(out, pkey, indent, "Private Key");
lib/libcrypto/evp/p_lib.c
837
EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey, int indent,
lib/libcrypto/evp/p_lib.c
841
return pkey->ameth->param_print(out, pkey, indent, pctx);
lib/libcrypto/evp/p_lib.c
842
return unsup_alg(out, pkey, indent, "Parameters");
lib/libcrypto/ocsp/ocsp_prn.c
72
ocsp_certid_print(BIO *bp, OCSP_CERTID* a, int indent)
lib/libcrypto/ocsp/ocsp_prn.c
76
BIO_printf(bp, "%*sCertificate ID:\n", indent, "");
lib/libcrypto/ocsp/ocsp_prn.c
77
indent += 2;
lib/libcrypto/ocsp/ocsp_prn.c
78
BIO_printf(bp, "%*sHash Algorithm: ", indent, "");
lib/libcrypto/ocsp/ocsp_prn.c
81
BIO_printf(bp, "\n%*sIssuer Name Hash: ", indent, "");
lib/libcrypto/ocsp/ocsp_prn.c
83
BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, "");
lib/libcrypto/ocsp/ocsp_prn.c
85
BIO_printf(bp, "\n%*sSerial Number: ", indent, "");
lib/libcrypto/pkcs7/pk7_asn1.c
1005
PKCS7_print_ctx(BIO *out, PKCS7 *x, int indent, const ASN1_PCTX *pctx)
lib/libcrypto/pkcs7/pk7_asn1.c
1007
return ASN1_item_print(out, (ASN1_VALUE *)x, indent,
lib/libcrypto/pkcs7/pkcs7.h
323
int PKCS7_print_ctx(BIO *out, PKCS7 *x, int indent, const ASN1_PCTX *pctx);
lib/libcrypto/rsa/rsa_ameth.c
351
rsa_pss_param_print(BIO *bp, int pss_key, RSA_PSS_PARAMS *pss, int indent)
lib/libcrypto/rsa/rsa_ameth.c
356
if (!BIO_indent(bp, indent, 128))
lib/libcrypto/rsa/rsa_ameth.c
375
indent += 2;
lib/libcrypto/rsa/rsa_ameth.c
376
if (!BIO_indent(bp, indent, 128))
lib/libcrypto/rsa/rsa_ameth.c
391
if (!BIO_indent(bp, indent, 128))
lib/libcrypto/rsa/rsa_ameth.c
413
if (!BIO_indent(bp, indent, 128))
lib/libcrypto/rsa/rsa_ameth.c
425
if (!BIO_indent(bp, indent, 128))
lib/libcrypto/rsa/rsa_ameth.c
501
rsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/rsa/rsa_ameth.c
503
return pkey_rsa_print(bp, pkey, indent, 0);
lib/libcrypto/rsa/rsa_ameth.c
507
rsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
lib/libcrypto/rsa/rsa_ameth.c
509
return pkey_rsa_print(bp, pkey, indent, 1);
lib/libcrypto/rsa/rsa_ameth.c
514
int indent, ASN1_PCTX *pctx)
lib/libcrypto/rsa/rsa_ameth.c
520
rv = rsa_pss_param_print(bp, 0, pss, indent);
lib/libcrypto/rsa/rsa_ameth.c
528
return X509_signature_dump(bp, sig, indent);
lib/libcrypto/x509/x509.h
344
int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent);
lib/libcrypto/x509/x509.h
770
int X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent,
lib/libcrypto/x509/x509.h
774
int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
lib/libcrypto/x509/x509_addr.c
641
i2r_IPAddressOrRanges(BIO *out, const int indent,
lib/libcrypto/x509/x509_addr.c
652
BIO_printf(out, "%*s", indent, "");
lib/libcrypto/x509/x509_addr.c
683
int indent)
lib/libcrypto/x509/x509_addr.c
699
BIO_printf(out, "%*sIPv4", indent, "");
lib/libcrypto/x509/x509_addr.c
702
BIO_printf(out, "%*sIPv6", indent, "");
lib/libcrypto/x509/x509_addr.c
705
BIO_printf(out, "%*sUnknown AFI %u", indent, "", afi);
lib/libcrypto/x509/x509_addr.c
747
if (!i2r_IPAddressOrRanges(out, indent + 2,
lib/libcrypto/x509/x509_asid.c
312
i2r_ASIdentifierChoice(BIO *out, ASIdentifierChoice *choice, int indent,
lib/libcrypto/x509/x509_asid.c
319
BIO_printf(out, "%*s%s:\n", indent, "", msg);
lib/libcrypto/x509/x509_asid.c
322
BIO_printf(out, "%*sinherit\n", indent + 2, "");
lib/libcrypto/x509/x509_asid.c
334
BIO_printf(out, "%*s%s\n", indent + 2, "", s);
lib/libcrypto/x509/x509_asid.c
341
BIO_printf(out, "%*s%s-", indent + 2, "", s);
lib/libcrypto/x509/x509_asid.c
365
int indent)
lib/libcrypto/x509/x509_asid.c
368
return (i2r_ASIdentifierChoice(out, asid->asnum, indent,
lib/libcrypto/x509/x509_asid.c
370
i2r_ASIdentifierChoice(out, asid->rdi, indent,
lib/libcrypto/x509/x509_cpols.c
695
int indent)
lib/libcrypto/x509/x509_cpols.c
703
BIO_printf(out, "%*sPolicy: ", indent, "");
lib/libcrypto/x509/x509_cpols.c
707
print_qualifiers(out, pinfo->qualifiers, indent + 2);
lib/libcrypto/x509/x509_cpols.c
713
print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals, int indent)
lib/libcrypto/x509/x509_cpols.c
722
BIO_printf(out, "%*sCPS: %.*s\n", indent, "",
lib/libcrypto/x509/x509_cpols.c
728
BIO_printf(out, "%*sUser Notice:\n", indent, "");
lib/libcrypto/x509/x509_cpols.c
729
print_notice(out, qualinfo->d.usernotice, indent + 2);
lib/libcrypto/x509/x509_cpols.c
73
BIO *out, int indent);
lib/libcrypto/x509/x509_cpols.c
734
indent + 2, "");
lib/libcrypto/x509/x509_cpols.c
744
print_notice(BIO *out, USERNOTICE *notice, int indent)
lib/libcrypto/x509/x509_cpols.c
751
BIO_printf(out, "%*sOrganization: %.*s\n", indent, "",
lib/libcrypto/x509/x509_cpols.c
753
BIO_printf(out, "%*sNumber%s: ", indent, "",
lib/libcrypto/x509/x509_cpols.c
768
BIO_printf(out, "%*sExplicit Text: %.*s\n", indent, "",
lib/libcrypto/x509/x509_cpols.c
77
int indent);
lib/libcrypto/x509/x509_cpols.c
78
static void print_notice(BIO *out, USERNOTICE *notice, int indent);
lib/libcrypto/x509/x509_crld.c
257
print_reasons(BIO *out, const char *rname, ASN1_BIT_STRING *rflags, int indent)
lib/libcrypto/x509/x509_crld.c
262
BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, "");
lib/libcrypto/x509/x509_crld.c
662
int indent);
lib/libcrypto/x509/x509_crld.c
73
int indent);
lib/libcrypto/x509/x509_crld.c
745
print_gens(BIO *out, STACK_OF(GENERAL_NAME) *gens, int indent)
lib/libcrypto/x509/x509_crld.c
750
BIO_printf(out, "%*s", indent + 2, "");
lib/libcrypto/x509/x509_crld.c
758
print_distpoint(BIO *out, DIST_POINT_NAME *dpn, int indent)
lib/libcrypto/x509/x509_crld.c
761
BIO_printf(out, "%*sFull Name:\n", indent, "");
lib/libcrypto/x509/x509_crld.c
762
print_gens(out, dpn->name.fullname, indent);
lib/libcrypto/x509/x509_crld.c
767
indent, "", indent + 2, "");
lib/libcrypto/x509/x509_crld.c
775
i2r_idp(const X509V3_EXT_METHOD *method, void *pidp, BIO *out, int indent)
lib/libcrypto/x509/x509_crld.c
780
print_distpoint(out, idp->distpoint, indent);
lib/libcrypto/x509/x509_crld.c
782
BIO_printf(out, "%*sOnly User Certificates\n", indent, "");
lib/libcrypto/x509/x509_crld.c
784
BIO_printf(out, "%*sOnly CA Certificates\n", indent, "");
lib/libcrypto/x509/x509_crld.c
786
BIO_printf(out, "%*sIndirect CRL\n", indent, "");
lib/libcrypto/x509/x509_crld.c
789
idp->onlysomereasons, indent);
lib/libcrypto/x509/x509_crld.c
791
BIO_printf(out, "%*sOnly Attribute Certificates\n", indent, "");
lib/libcrypto/x509/x509_crld.c
795
BIO_printf(out, "%*s<EMPTY>\n", indent, "");
lib/libcrypto/x509/x509_crld.c
801
i2r_crldp(const X509V3_EXT_METHOD *method, void *pcrldp, BIO *out, int indent)
lib/libcrypto/x509/x509_crld.c
811
print_distpoint(out, point->distpoint, indent);
lib/libcrypto/x509/x509_crld.c
814
indent);
lib/libcrypto/x509/x509_crld.c
816
BIO_printf(out, "%*sCRL Issuer:\n", indent, "");
lib/libcrypto/x509/x509_crld.c
817
print_gens(out, point->CRLissuer, indent);
lib/libcrypto/x509/x509_local.h
167
int X509_CERT_AUX_print(BIO *bp,X509_CERT_AUX *x, int indent);
lib/libcrypto/x509/x509_ocsp.c
372
int indent)
lib/libcrypto/x509/x509_ocsp.c
374
if (BIO_printf(out, "%*s", indent, "") <= 0)
lib/libcrypto/x509/x509_ocsp.c
385
int indent)
lib/libcrypto/x509/x509_ocsp.c
78
BIO *out, int indent);
lib/libcrypto/x509/x509_ocsp.c
80
BIO *out, int indent);
lib/libcrypto/x509/x509_ocsp.c
82
int indent);
lib/libcrypto/x509/x509_ocsp.c
89
BIO *out, int indent);
lib/libcrypto/x509/x509_ocsp.c
92
void *nocheck, BIO *out, int indent);
lib/libcrypto/x509/x509_pku.c
151
BIO *out, int indent)
lib/libcrypto/x509/x509_pku.c
153
BIO_printf(out, "%*s", indent, "");
lib/libcrypto/x509/x509_pku.c
66
PKEY_USAGE_PERIOD *usage, BIO *out, int indent);
lib/libcrypto/x509/x509_prn.c
108
X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent)
lib/libcrypto/x509/x509_prn.c
118
return unknown_ext_print(out, ext, flag, indent, 0);
lib/libcrypto/x509/x509_prn.c
127
return unknown_ext_print(out, ext, flag, indent, 1);
lib/libcrypto/x509/x509_prn.c
134
BIO_printf(out, "%*s%s", indent, "", value);
lib/libcrypto/x509/x509_prn.c
140
X509V3_EXT_val_prn(out, nval, indent,
lib/libcrypto/x509/x509_prn.c
143
if (!method->i2r(method, ext_str, out, indent))
lib/libcrypto/x509/x509_prn.c
161
const STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent)
lib/libcrypto/x509/x509_prn.c
169
BIO_printf(bp, "%*s%s:\n",indent, "", title);
lib/libcrypto/x509/x509_prn.c
170
indent += 4;
lib/libcrypto/x509/x509_prn.c
177
if (indent && BIO_printf(bp, "%*s",indent, "") <= 0)
lib/libcrypto/x509/x509_prn.c
184
if (!X509V3_EXT_print(bp, ex, flag, indent + 4)) {
lib/libcrypto/x509/x509_prn.c
185
BIO_printf(bp, "%*s", indent + 4, "");
lib/libcrypto/x509/x509_prn.c
197
int indent, int supported)
lib/libcrypto/x509/x509_prn.c
204
BIO_printf(out, "%*s<Parse Error>", indent, "");
lib/libcrypto/x509/x509_prn.c
206
BIO_printf(out, "%*s<Not Supported>", indent, "");
lib/libcrypto/x509/x509_prn.c
210
ext->value->data, ext->value->length, indent, -1);
lib/libcrypto/x509/x509_prn.c
213
ext->value->length, indent);
lib/libcrypto/x509/x509_prn.c
221
X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent)
lib/libcrypto/x509/x509_prn.c
228
ret = X509V3_EXT_print(bio_tmp, ext, flag, indent);
lib/libcrypto/x509/x509_prn.c
70
int indent, int supported);
lib/libcrypto/x509/x509_prn.c
75
X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml)
lib/libcrypto/x509/x509_prn.c
83
BIO_printf(out, "%*s", indent, "");
lib/libcrypto/x509/x509_prn.c
89
BIO_printf(out, "%*s", indent, "");
lib/libcrypto/x509/x509v3.h
648
void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
lib/libcrypto/x509/x509v3.h
650
int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent);
lib/libcrypto/x509/x509v3.h
651
int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent);
lib/libcrypto/x509/x509v3.h
654
const STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent);
lib/libcrypto/x509/x509v3.h
91
BIO *out, int indent);
libexec/login_ldap/aldap.c
1104
static int indent = 0;
libexec/login_ldap/aldap.c
1126
fprintf(stderr, "%*slen %lu ", indent, "", root->be_len);
libexec/login_ldap/aldap.c
1298
indent += 2;
libexec/login_ldap/aldap.c
1300
indent -= 2;
regress/lib/libcrypto/bio/bio_dump.c
101
.indent = 0,
regress/lib/libcrypto/bio/bio_dump.c
107
.indent = 0,
regress/lib/libcrypto/bio/bio_dump.c
113
.indent = 6,
regress/lib/libcrypto/bio/bio_dump.c
119
.indent = -1,
regress/lib/libcrypto/bio/bio_dump.c
126
.indent = -1,
regress/lib/libcrypto/bio/bio_dump.c
133
.indent = 4,
regress/lib/libcrypto/bio/bio_dump.c
154
.indent = 11,
regress/lib/libcrypto/bio/bio_dump.c
177
.indent = 18,
regress/lib/libcrypto/bio/bio_dump.c
201
.indent = 25,
regress/lib/libcrypto/bio/bio_dump.c
228
.indent = 32,
regress/lib/libcrypto/bio/bio_dump.c
259
.indent = 35,
regress/lib/libcrypto/bio/bio_dump.c
293
.indent = 39,
regress/lib/libcrypto/bio/bio_dump.c
331
.indent = 46,
regress/lib/libcrypto/bio/bio_dump.c
374
.indent = 53,
regress/lib/libcrypto/bio/bio_dump.c
434
.indent = 60,
regress/lib/libcrypto/bio/bio_dump.c
547
.indent = 67,
regress/lib/libcrypto/bio/bio_dump.c
766
.indent = 4,
regress/lib/libcrypto/bio/bio_dump.c
803
if ((ret = BIO_dump_indent(bio, tc->input, tc->inlen, tc->indent)) == -1)
regress/lib/libcrypto/bio/bio_dump.c
809
tc->indent, ret, got_len, strlen(tc->output));
regress/lib/libcrypto/bio/bio_dump.c
813
fprintf(stderr, "%d: mismatch\n", tc->indent);
regress/lib/libcrypto/bio/bio_dump.c
95
int indent;
regress/sys/sys/tree/rb/rb-test.c
880
print_helper(const struct node *n, int indent)
regress/sys/sys/tree/rb/rb-test.c
883
print_helper(RB_RIGHT(n, node_link), indent + 4);
regress/sys/sys/tree/rb/rb-test.c
885
indent, "", n->key, n->size, RB_RANK(tree, n),
regress/sys/sys/tree/rb/rb-test.c
889
print_helper(RB_LEFT(n, node_link), indent + 4);
regress/sys/sys/tree/rb/rbt-test.c
879
print_helper(const struct node *n, int indent)
regress/sys/sys/tree/rb/rbt-test.c
882
print_helper(RBT_RIGHT(n, node_link), indent + 4);
regress/sys/sys/tree/rb/rbt-test.c
884
indent, "", n->key, n->size, RBT_RANK(tree, n),
regress/sys/sys/tree/rb/rbt-test.c
888
print_helper(RBT_LEFT(n, node_link), indent + 4);
regress/usr.sbin/snmpd/snmp.c
1109
indent += 2;
regress/usr.sbin/snmpd/snmp.c
1111
indent -= 2;
regress/usr.sbin/snmpd/snmp.c
949
static int indent = 0;
regress/usr.sbin/snmpd/snmp.c
966
fprintf(stderr, "%*slen %lu ", indent, "", root->be_len);
sbin/dhcp6leased/printconf.c
45
print_iface_pd_conf(char *indent, struct iface_pd_conf *pd_conf, int verbose)
sbin/dhcp6leased/printconf.c
59
printf("%s%s/%d\t# %s/%d\n", indent, pd_conf->name,
sbin/dhcp6leased/printconf.c
62
printf("%s%s/%d\n", indent, pd_conf->name, pd_conf->prefix_len);
sbin/dhcpleased/printconf.c
44
print_dhcp_options(char *indent, uint8_t *p, int len)
sbin/dhcpleased/printconf.c
70
printf("%ssend vendor class id \"%s\"\n", indent, buf);
sbin/dhcpleased/printconf.c
77
printf("%ssend client id \"", indent);
sbin/dhcpleased/printconf.c
86
indent, buf);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
611
int indent, struct drm_printer *printer)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
615
#define P(f, ...) drm_printf_indent(printer, indent, f, ##__VA_ARGS__)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
623
indent++;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
663
indent++;
sys/dev/pci/drm/display/drm_dsc_helper.c
1478
static void drm_dsc_dump_config_main_params(struct drm_printer *p, int indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1481
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1486
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1491
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1494
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1498
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1501
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1505
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1509
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1512
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1517
static void drm_dsc_dump_config_rc_params(struct drm_printer *p, int indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1526
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1528
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1532
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1538
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1544
drm_printf_indent(p, indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1560
void drm_dsc_dump_config(struct drm_printer *p, int indent,
sys/dev/pci/drm/display/drm_dsc_helper.c
1563
drm_dsc_dump_config_main_params(p, indent, cfg);
sys/dev/pci/drm/display/drm_dsc_helper.c
1564
drm_dsc_dump_config_rc_params(p, indent, cfg);
sys/dev/pci/drm/drm_framebuffer.c
1189
void drm_framebuffer_print_info(struct drm_printer *p, unsigned int indent,
sys/dev/pci/drm/drm_framebuffer.c
1194
drm_printf_indent(p, indent, "allocated by = %s\n", fb->comm);
sys/dev/pci/drm/drm_framebuffer.c
1195
drm_printf_indent(p, indent, "refcount=%u\n",
sys/dev/pci/drm/drm_framebuffer.c
1197
drm_printf_indent(p, indent, "format=%p4cc\n", &fb->format->format);
sys/dev/pci/drm/drm_framebuffer.c
1198
drm_printf_indent(p, indent, "modifier=0x%llx\n", fb->modifier);
sys/dev/pci/drm/drm_framebuffer.c
1199
drm_printf_indent(p, indent, "size=%ux%u\n", fb->width, fb->height);
sys/dev/pci/drm/drm_framebuffer.c
1200
drm_printf_indent(p, indent, "layers:\n");
sys/dev/pci/drm/drm_framebuffer.c
1203
drm_printf_indent(p, indent + 1, "size[%u]=%dx%d\n", i,
sys/dev/pci/drm/drm_framebuffer.c
1206
drm_printf_indent(p, indent + 1, "pitch[%u]=%u\n", i, fb->pitches[i]);
sys/dev/pci/drm/drm_framebuffer.c
1207
drm_printf_indent(p, indent + 1, "offset[%u]=%u\n", i, fb->offsets[i]);
sys/dev/pci/drm/drm_framebuffer.c
1208
drm_printf_indent(p, indent + 1, "obj[%u]:%s\n", i,
sys/dev/pci/drm/drm_framebuffer.c
1211
drm_gem_print_info(p, indent + 2, fb->obj[i]);
sys/dev/pci/drm/drm_gem.c
1572
void drm_gem_print_info(struct drm_printer *p, unsigned int indent,
sys/dev/pci/drm/drm_gem.c
1575
drm_printf_indent(p, indent, "name=%d\n", obj->name);
sys/dev/pci/drm/drm_gem.c
1576
drm_printf_indent(p, indent, "refcount=%u\n",
sys/dev/pci/drm/drm_gem.c
1578
drm_printf_indent(p, indent, "start=%08lx\n",
sys/dev/pci/drm/drm_gem.c
1580
drm_printf_indent(p, indent, "size=%zu\n", obj->size);
sys/dev/pci/drm/drm_gem.c
1581
drm_printf_indent(p, indent, "imported=%s\n",
sys/dev/pci/drm/drm_gem.c
1585
obj->funcs->print_info(p, indent, obj);
sys/dev/pci/drm/drm_internal.h
211
void drm_gem_print_info(struct drm_printer *p, unsigned int indent,
sys/dev/pci/drm/drm_internal.h
309
void drm_framebuffer_print_info(struct drm_printer *p, unsigned int indent,
sys/dev/pci/drm/i915/display/intel_vdsc.c
1040
static void intel_vdsc_dump_state(struct drm_printer *p, int indent,
sys/dev/pci/drm/i915/display/intel_vdsc.c
1043
drm_printf_indent(p, indent,
sys/dev/pci/drm/i915/display/intel_vdsc.c
1050
void intel_vdsc_state_dump(struct drm_printer *p, int indent,
sys/dev/pci/drm/i915/display/intel_vdsc.c
1056
intel_vdsc_dump_state(p, indent, crtc_state);
sys/dev/pci/drm/i915/display/intel_vdsc.c
1057
drm_dsc_dump_config(p, indent, &crtc_state->dsc.config);
sys/dev/pci/drm/i915/display/intel_vdsc.h
35
void intel_vdsc_state_dump(struct drm_printer *p, int indent,
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
4088
int indent),
sys/dev/pci/drm/i915/gt/intel_execlists_submission.h
32
int indent),
sys/dev/pci/drm/i915/gt/intel_timeline.c
415
int indent))
sys/dev/pci/drm/i915/gt/intel_timeline.h
93
int indent));
sys/dev/pci/drm/i915/i915_request.c
2277
int indent)
sys/dev/pci/drm/i915/i915_request.c
2318
prefix, indent, " ",
sys/dev/pci/drm/i915/i915_request.h
457
int indent);
sys/dev/pci/drm/i915/i915_scheduler.c
428
int indent)
sys/dev/pci/drm/i915/i915_scheduler.c
432
i915_request_show(m, rq, prefix, indent);
sys/dev/pci/drm/i915/i915_scheduler.c
448
i915_request_show(m, signaler, prefix, indent + 2);
sys/dev/pci/drm/i915/i915_scheduler.h
98
int indent);
sys/dev/pci/drm/include/drm/display/drm_dsc_helper.h
33
void drm_dsc_dump_config(struct drm_printer *p, int indent, const struct drm_dsc_config *cfg);
sys/dev/pci/drm/include/drm/drm_gem.h
113
void (*print_info)(struct drm_printer *p, unsigned int indent,
sys/dev/pci/drm/include/drm/drm_print.h
227
#define drm_printf_indent(printer, indent, fmt, ...) \
sys/dev/pci/drm/include/drm/drm_print.h
228
drm_printf((printer), "%.*s" fmt, (indent), "\t\t\t\t\tX", ##__VA_ARGS__)
sys/kern/subr_witness.c
343
struct witness *, int indent);
sys/kern/subr_witness.c
654
struct witness *w, int indent)
sys/kern/subr_witness.c
658
for (i = 0; i < indent; i++)
sys/kern/subr_witness.c
672
indent++;
sys/kern/subr_witness.c
677
indent);
sys/kern/uipc_mbuf.c
1550
const char *indent = deep ? "++-" : "-+-";
sys/kern/uipc_mbuf.c
1561
(*pr)("%s mbuf %p, %s, off %zd, len %u", indent, m, type,
sys/kern/uipc_mbuf.c
1571
indent = deep ? "|+-" : " +-";
sys/kern/uipc_mbuf.c
1573
indent = deep ? "|\\-" : " \\-";
sys/kern/uipc_mbuf.c
1576
indent, chain, len, size);
sys/kern/uipc_mbuf.c
1585
const char *indent = "+--";
sys/kern/uipc_mbuf.c
1601
(*pr)("%s mbuf %p, chain %zu", indent, m, chain);
sys/kern/uipc_mbuf.c
1606
indent = "\\--";
sys/kern/uipc_mbuf.c
1608
(*pr)("%s total packets %zu\n", indent, pkts);
usr.bin/dig/lib/dns/masterdump.c
190
result = indent(&col, ctx->style.rdata_column,
usr.bin/dig/lib/dns/masterdump.c
224
if ((result = indent(&column, ctx->style.col, \
usr.bin/fmt/fmt.c
553
new_paragraph(size_t indent)
usr.bin/fmt/fmt.c
558
x = indent;
usr.bin/ldap/aldap.c
1104
static int indent = 0;
usr.bin/ldap/aldap.c
1126
fprintf(stderr, "%*slen %lu ", indent, "", root->be_len);
usr.bin/ldap/aldap.c
1298
indent += 2;
usr.bin/ldap/aldap.c
1300
indent -= 2;
usr.bin/lex/scanopt.c
248
int i, columns, indent = 2;
usr.bin/lex/scanopt.c
386
if (maxlen[0] + maxlen[1] + indent * 2 > columns) {
usr.bin/lex/scanopt.c
388
maxlen[1] = columns - (maxlen[0] + indent * 2);
usr.bin/lex/scanopt.c
392
desccol = maxlen[0] + indent * 2;
usr.bin/lex/scanopt.c
423
PRINT_SPACES (fp, indent);
usr.bin/lex/scanopt.c
424
nchars += indent;
usr.bin/mandoc/html.c
1032
h->col = (h->indent + 1) * 2 + h->bufcol + 1;
usr.bin/mandoc/html.c
1095
h->col = h->indent * 2;
usr.bin/mandoc/html.c
792
h->indent++;
usr.bin/mandoc/html.c
856
h->indent--;
usr.bin/mandoc/html.c
889
h->indent = 1;
usr.bin/mandoc/html.c
905
h->indent = 0;
usr.bin/mandoc/html.h
98
size_t indent; /* current output indentation level */
usr.bin/mandoc/main.c
393
(conf.output.width == 0 || conf.output.indent == 0) &&
usr.bin/mandoc/main.c
398
if (conf.output.indent == 0 && ws.ws_col < 66)
usr.bin/mandoc/main.c
399
conf.output.indent = 3;
usr.bin/mandoc/manconf.h
39
size_t indent;
usr.bin/mandoc/manpath.c
283
if (conf->indent) {
usr.bin/mandoc/manpath.c
284
mandoc_asprintf(&oldval, "%zu", conf->indent);
usr.bin/mandoc/manpath.c
287
conf->indent = strtonum(cp, 0, 1000, &errstr);
usr.bin/mandoc/term_ascii.c
117
if (outopts->indent)
usr.bin/mandoc/term_ascii.c
118
p->defindent = outopts->indent;
usr.bin/mandoc/tree.c
177
print_span(n->span, indent);
usr.bin/mandoc/tree.c
179
for (i = 0; i < indent; i++)
usr.bin/mandoc/tree.c
196
print_box(n->eqn->first, indent + 4);
usr.bin/mandoc/tree.c
198
print_mdoc(n->child, indent +
usr.bin/mandoc/tree.c
201
print_mdoc(n->next, indent);
usr.bin/mandoc/tree.c
205
print_man(const struct roff_node *n, int indent)
usr.bin/mandoc/tree.c
271
print_span(n->span, indent);
usr.bin/mandoc/tree.c
273
for (i = 0; i < indent; i++)
usr.bin/mandoc/tree.c
279
print_box(n->eqn->first, indent + 4);
usr.bin/mandoc/tree.c
281
print_man(n->child, indent +
usr.bin/mandoc/tree.c
284
print_man(n->next, indent);
usr.bin/mandoc/tree.c
322
print_box(const struct eqn_box *ep, int indent)
usr.bin/mandoc/tree.c
334
for (i = 0; i < indent; i++)
usr.bin/mandoc/tree.c
379
print_box(ep->first, indent + 4);
usr.bin/mandoc/tree.c
380
print_box(ep->next, indent);
usr.bin/mandoc/tree.c
421
print_span(const struct tbl_span *sp, int indent)
usr.bin/mandoc/tree.c
428
for (i = 0; i < indent; i++)
usr.bin/mandoc/tree.c
450
for (i = 0; i < indent; i++)
usr.bin/mandoc/tree.c
84
print_mdoc(const struct roff_node *n, int indent)
usr.bin/mg/cmode.c
190
ret = indent(FFOTHARG, 0);
usr.bin/mg/cmode.c
192
ret = indent(FFOTHARG, pi + ci);
usr.bin/mg/def.h
559
int indent(int, int);
usr.bin/mg/funmap.c
128
{indent, "indent-current-line", 0},
usr.bin/openssl/apps.c
1000
X509_NAME_print_ex(out, nm, indent, lflags);
usr.bin/openssl/apps.c
984
int indent = 0;
usr.bin/openssl/apps.c
990
indent = 4;
usr.bin/openssl/asn1pars.c
161
.opt.flag = &cfg.indent,
usr.bin/openssl/asn1pars.c
394
cfg.indent, cfg.dump)) {
usr.bin/openssl/asn1pars.c
80
int indent;
usr.bin/patch/pch.c
1168
int indent = 0;
usr.bin/patch/pch.c
1175
indent < p_indent && (*s == ' ' || *s == '\t' || *s == 'X');
usr.bin/patch/pch.c
1178
indent += 8 - (indent % 7);
usr.bin/patch/pch.c
1180
indent++;
usr.bin/patch/pch.c
254
int indent, retval;
usr.bin/patch/pch.c
267
indent = 0;
usr.bin/patch/pch.c
285
indent += 8 - (indent % 8);
usr.bin/patch/pch.c
287
indent++;
usr.bin/patch/pch.c
296
p_indent = indent; /* assume this for now */
usr.bin/patch/pch.c
336
p_indent = indent;
usr.bin/patch/pch.c
345
p_indent = indent;
usr.bin/patch/pch.c
362
p_indent = indent;
usr.bin/patch/pch.c
373
p_indent = indent;
usr.bin/pkgconf/cli/main.c
768
print_fragment_tree_branch(pkgconf_list_t *fragment_list, int indent)
usr.bin/pkgconf/cli/main.c
777
printf("%*s'-%c%s' [type %c]\n", indent, "", frag->type, frag->data, frag->type);
usr.bin/pkgconf/cli/main.c
779
printf("%*s'%s' [untyped]\n", indent, "", frag->data);
usr.bin/pkgconf/cli/main.c
781
print_fragment_tree_branch(&frag->children, indent + 2);
usr.bin/rpcgen/rpc_cout.c
184
print_ifopen(indent, name)
usr.bin/rpcgen/rpc_cout.c
185
int indent;
usr.bin/rpcgen/rpc_cout.c
188
tabify(fout, indent);
usr.bin/rpcgen/rpc_cout.c
216
print_ifclose(indent)
usr.bin/rpcgen/rpc_cout.c
217
int indent;
usr.bin/rpcgen/rpc_cout.c
220
tabify(fout, indent);
usr.bin/rpcgen/rpc_cout.c
225
print_ifstat(indent, prefix, type, rel, amax, objname, name)
usr.bin/rpcgen/rpc_cout.c
226
int indent;
usr.bin/rpcgen/rpc_cout.c
238
print_ifopen(indent, "pointer");
usr.bin/rpcgen/rpc_cout.c
251
print_ifopen(indent, alt);
usr.bin/rpcgen/rpc_cout.c
255
print_ifopen(indent, "vector");
usr.bin/rpcgen/rpc_cout.c
258
tabify(fout, indent);
usr.bin/rpcgen/rpc_cout.c
273
print_ifopen(indent, alt);
usr.bin/rpcgen/rpc_cout.c
278
print_ifopen(indent, alt);
usr.bin/rpcgen/rpc_cout.c
280
print_ifopen(indent, "array");
usr.bin/rpcgen/rpc_cout.c
297
print_ifopen(indent, type);
usr.bin/rpcgen/rpc_cout.c
301
print_ifclose(indent);
usr.bin/rpcgen/rpc_cout.c
645
print_stat(indent, dec)
usr.bin/rpcgen/rpc_cout.c
647
int indent;
usr.bin/rpcgen/rpc_cout.c
660
print_ifstat(indent, prefix, type, rel, amax, name, dec->name);
usr.bin/snmp/smi.c
234
indent += 2;
usr.bin/snmp/smi.c
236
indent -= 2;
usr.bin/snmp/smi.c
73
static int indent = 0;
usr.bin/snmp/smi.c
90
fprintf(stderr, "%*slen %lu ", indent, "", root->be_len);
usr.bin/tic/dump_entry.c
1014
if (column != indent && height > 1)
usr.bin/tic/dump_entry.c
1497
indent = 0;
usr.bin/tic/dump_entry.c
259
indent = 8;
usr.bin/tic/dump_entry.c
429
column = indent;
usr.bin/tic/dump_entry.c
582
&& column > indent
usr.bin/tic/dump_entry.c
85
static int indent = 8;
usr.bin/tic/dump_entry.c
938
column = indent; /* workaround to prevent empty lines */
usr.bin/tic/dump_entry.c
981
if (column != indent && height > 1)
usr.sbin/bgpctl/json.c
191
eb = fprintf(jsonfh, "\n%.*s%c", level, indent, c) < 0;
usr.sbin/bgpctl/json.c
45
static char indent[JSON_MAX_STACK + 1];
usr.sbin/bgpctl/json.c
66
eb = fprintf(jsonfh, "\t%.*s", level, indent) < 0;
usr.sbin/bgpctl/json.c
95
memset(indent, '\t', JSON_MAX_STACK);
usr.sbin/btrace/bt_parse.y
1145
int c, indent = yylval.colno;
usr.sbin/btrace/bt_parse.y
1152
indent += (8 - 1);
usr.sbin/btrace/bt_parse.y
1156
fprintf(stderr, "\n%*c\n", indent, '^');
usr.sbin/ldapd/logmsg.c
123
fprintf(stderr, "%*slen %lu ", indent, "", root->be_len);
usr.sbin/ldapd/logmsg.c
326
indent += 2;
usr.sbin/ldapd/logmsg.c
328
indent -= 2;
usr.sbin/ldapd/logmsg.c
92
static int indent = 0;
usr.sbin/lpd/printer.c
419
job.indent = num;
usr.sbin/lpd/printer.c
597
char *argv[16], *prog, width[16], length[16], indent[16], tmp[512];
usr.sbin/lpd/printer.c
644
snprintf(indent, sizeof(indent), "-i%d", job->indent);
usr.sbin/lpd/printer.c
653
argv[argc++] = indent;
usr.sbin/lpd/printer.c
68
int indent;
usr.sbin/lpr/filters/lpf.c
112
col = indent;
usr.sbin/lpr/filters/lpf.c
131
if (--col < indent)
usr.sbin/lpr/filters/lpf.c
132
col = indent;
usr.sbin/lpr/filters/lpf.c
136
col = indent;
usr.sbin/lpr/filters/lpf.c
140
col = ((col - indent) | 07) + indent + 1;
usr.sbin/lpr/filters/lpf.c
54
int indent; /* indentation length */
usr.sbin/lpr/filters/lpf.c
89
indent = atoi(optarg);
usr.sbin/lpr/lpd/printjob.c
356
indent[2] = '0';
usr.sbin/lpr/lpd/printjob.c
357
indent[3] = '\0';
usr.sbin/lpr/lpd/printjob.c
466
strlcpy(indent+2, line+1, sizeof(indent) - 2);
usr.sbin/lpr/lpd/printjob.c
618
av[3] = indent;
usr.sbin/lpr/lpd/printjob.c
637
av[4] = indent;
usr.sbin/lpr/lpd/printjob.c
95
static char indent[10] = "-i0";
usr.sbin/lpr/lpr/lpr.c
205
indent = atoi(optarg);
usr.sbin/lpr/lpr/lpr.c
206
if (indent < 0)
usr.sbin/lpr/lpr/lpr.c
207
indent = 8;
usr.sbin/lpr/lpr/lpr.c
233
indent = 8;
usr.sbin/lpr/lpr/lpr.c
304
card('I', itoa(indent));
usr.sbin/lpr/lpr/lpr.c
75
static int indent; /* amount to indent */
usr.sbin/makefs/cd9660/cd9660_debug.c
67
debug_print_susp_attrs(cd9660node *n, int indent)
usr.sbin/makefs/cd9660/cd9660_debug.c
72
print_n_tabs(indent);
usr.sbin/mtree/create.c
100
statf(indent, p);
usr.sbin/mtree/create.c
104
(void)printf("%*s# %s\n", indent, "", p->fts_path);
usr.sbin/mtree/create.c
105
(void)printf("%*s..\n", indent, "");
usr.sbin/mtree/create.c
117
statf(indent, p);
usr.sbin/mtree/create.c
128
statf(int indent, FTSENT *p)
usr.sbin/mtree/create.c
144
offset = printf("%*s%s", indent, "", escaped_name);
usr.sbin/mtree/create.c
146
offset = printf("%*s %s", indent, "", escaped_name);
usr.sbin/mtree/create.c
150
if (offset > (INDENTNAMELEN + indent))
usr.sbin/mtree/create.c
153
offset += printf("%*s", (INDENTNAMELEN + indent) - offset, "");
usr.sbin/mtree/create.c
156
output(indent, &offset, "type=%s", inotype(p->fts_statp->st_mode));
usr.sbin/mtree/create.c
161
output(indent, &offset, "uname=%s", name);
usr.sbin/mtree/create.c
168
output(indent, &offset, "uid=%u", p->fts_statp->st_uid);
usr.sbin/mtree/create.c
174
output(indent, &offset, "gname=%s", name);
usr.sbin/mtree/create.c
181
output(indent, &offset, "gid=%u", p->fts_statp->st_gid);
usr.sbin/mtree/create.c
184
output(indent, &offset, "mode=%#o", p->fts_statp->st_mode & MBITS);
usr.sbin/mtree/create.c
186
output(indent, &offset, "nlink=%u", p->fts_statp->st_nlink);
usr.sbin/mtree/create.c
188
output(indent, &offset, "size=%lld",
usr.sbin/mtree/create.c
191
output(indent, &offset, "time=%lld.%ld",
usr.sbin/mtree/create.c
199
output(indent, &offset, "cksum=%u", val);
usr.sbin/mtree/create.c
208
output(indent, &offset, "md5digest=%s", md5digest);
usr.sbin/mtree/create.c
217
output(indent, &offset, "rmd160digest=%s", rmd160digest);
usr.sbin/mtree/create.c
226
output(indent, &offset, "sha1digest=%s", sha1digest);
usr.sbin/mtree/create.c
235
output(indent, &offset, "sha256digest=%s", sha256digest);
usr.sbin/mtree/create.c
245
output(indent, &offset, "link=%s", escaped_name);
usr.sbin/mtree/create.c
255
output(indent, &offset, "flags=%s", file_flags);
usr.sbin/mtree/create.c
257
output(indent, &offset, "flags=none");
usr.sbin/mtree/create.c
369
output(int indent, int *offset, const char *fmt, ...)
usr.sbin/mtree/create.c
379
(void)printf(" \\\n%*s", INDENTNAMELEN + indent, "");
usr.sbin/mtree/create.c
380
*offset = INDENTNAMELEN + indent;
usr.sbin/mtree/create.c
78
int indent = 0;
usr.sbin/mtree/create.c
92
indent = p->fts_level * 4;
usr.sbin/rad/printconf.c
101
printf("%s\tsearch {\n", indent);
usr.sbin/rad/printconf.c
104
printf("%s\t\t%s\n", indent, ra_dnssl->search);
usr.sbin/rad/printconf.c
105
printf("%s\t}\n", indent);
usr.sbin/rad/printconf.c
107
printf("%s}\n", indent);
usr.sbin/rad/printconf.c
110
printf("%snat64 prefix %s/%d {\n", indent, inet_ntop(AF_INET6,
usr.sbin/rad/printconf.c
112
printf("%s\tlifetime %u\n", indent, pref64->ltime);
usr.sbin/rad/printconf.c
113
printf("%s}\n", indent);
usr.sbin/rad/printconf.c
119
print_prefix_options(const char *indent, const struct ra_prefix_conf
usr.sbin/rad/printconf.c
122
printf("%svalid lifetime %u\n", indent, ra_prefix_conf->vltime);
usr.sbin/rad/printconf.c
123
printf("%spreferred lifetime %u\n", indent, ra_prefix_conf->pltime);
usr.sbin/rad/printconf.c
124
printf("%son-link %s\n", indent, yesno(ra_prefix_conf->lflag));
usr.sbin/rad/printconf.c
125
printf("%sautonomous address-configuration %s\n", indent,
usr.sbin/rad/printconf.c
65
print_ra_options(const char *indent, const struct ra_options_conf *ra_options)
usr.sbin/rad/printconf.c
72
printf("%sdefault router %s\n", indent, yesno(ra_options->dfr));
usr.sbin/rad/printconf.c
73
printf("%shop limit %d\n", indent, ra_options->cur_hl);
usr.sbin/rad/printconf.c
74
printf("%smanaged address configuration %s\n", indent,
usr.sbin/rad/printconf.c
76
printf("%sother configuration %s\n", indent, yesno(ra_options->o_flag));
usr.sbin/rad/printconf.c
77
printf("%srouter preference %s\n", indent, rtpref(ra_options->rtpref));
usr.sbin/rad/printconf.c
78
printf("%srouter lifetime %d\n", indent, ra_options->router_lifetime);
usr.sbin/rad/printconf.c
79
printf("%sreachable time %u\n", indent, ra_options->reachable_time);
usr.sbin/rad/printconf.c
80
printf("%sretrans timer %u\n", indent, ra_options->retrans_timer);
usr.sbin/rad/printconf.c
81
printf("%ssource link-layer address %s\n", indent,
usr.sbin/rad/printconf.c
84
printf("%smtu %u\n", indent, ra_options->mtu);
usr.sbin/rad/printconf.c
88
printf("%sdns {\n", indent);
usr.sbin/rad/printconf.c
89
printf("%s\tlifetime %u\n", indent, ra_options->rdns_lifetime);
usr.sbin/rad/printconf.c
91
printf("%s\tnameserver {\n", indent);
usr.sbin/rad/printconf.c
96
printf("%s\t\t%s\n", indent, buf);
usr.sbin/rad/printconf.c
98
printf("%s\t}\n", indent);
usr.sbin/radiusctl/json.c
191
eb = fprintf(jsonfh, "\n%.*s%c", level, indent, c) < 0;
usr.sbin/radiusctl/json.c
45
static char indent[JSON_MAX_STACK + 1];
usr.sbin/radiusctl/json.c
66
eb = fprintf(jsonfh, "\t%.*s", level, indent) < 0;
usr.sbin/radiusctl/json.c
95
memset(indent, '\t', JSON_MAX_STACK);
usr.sbin/rpki-client/json.c
191
eb = fprintf(jsonfh, "\n%.*s%c", level, indent, c) < 0;
usr.sbin/rpki-client/json.c
45
static char indent[JSON_MAX_STACK + 1];
usr.sbin/rpki-client/json.c
66
eb = fprintf(jsonfh, "\t%.*s", level, indent) < 0;
usr.sbin/rpki-client/json.c
95
memset(indent, '\t', JSON_MAX_STACK);
usr.sbin/snmpd/smi.c
197
static int indent = 0;
usr.sbin/snmpd/smi.c
214
fprintf(stderr, "%*slen %lu ", indent, "", root->be_len);
usr.sbin/snmpd/smi.c
357
indent += 2;
usr.sbin/snmpd/smi.c
359
indent -= 2;
usr.sbin/ypldap/aldap.c
1140
static int indent = 0;
usr.sbin/ypldap/aldap.c
1162
fprintf(stderr, "%*slen %lu ", indent, "", root->be_len);
usr.sbin/ypldap/aldap.c
1334
indent += 2;
usr.sbin/ypldap/aldap.c
1336
indent -= 2;