Lines Matching refs:indent
110 int indent = 0; in cwalk() local
134 indent = p->fts_level * 4; in cwalk()
150 statf(fp, indent, p); in cwalk()
155 fprintf(fp, "%*s# %s\n", indent, "", in cwalk()
158 fprintf(fp, "%*s..\n", indent, ""); in cwalk()
171 statf(fp, indent, p); in cwalk()
184 statf(FILE *fp, int indent, FTSENT *p) in statf() argument
193 offset = fprintf(fp, "%*s%s%s", indent, "", in statf()
196 if (offset > (INDENTNAMELEN + indent)) in statf()
200 (INDENTNAMELEN + indent) - offset, ""); in statf()
203 output(fp, indent, &offset, "type=%s", in statf()
208 output(fp, indent, &offset, "uname=%s", name); in statf()
210 output(fp, indent, &offset, "uid=%u", in statf()
216 output(fp, indent, &offset, "gname=%s", name); in statf()
218 output(fp, indent, &offset, "gid=%u", in statf()
222 output(fp, indent, &offset, "mode=%#o", in statf()
226 output(fp, indent, &offset, "device=%#jx", in statf()
229 output(fp, indent, &offset, "nlink=%ju", in statf()
233 output(fp, indent, &offset, "size=%ju", in statf()
237 output(fp, indent, &offset, "time=%jd.%09ld", in statf()
241 output(fp, indent, &offset, "time=%jd.%09ld", in statf()
249 output(fp, indent, &offset, "cksum=%lu", (long)val); in statf()
256 output(fp, indent, &offset, "%s=%s", MD5KEY, digestbuf); in statf()
265 output(fp, indent, &offset, "%s=%s", RMD160KEY, digestbuf); in statf()
274 output(fp, indent, &offset, "%s=%s", SHA1KEY, digestbuf); in statf()
283 output(fp, indent, &offset, "%s=%s", SHA256KEY, digestbuf); in statf()
291 output(fp, indent, &offset, "%s=%s", SHA384KEY, digestbuf); in statf()
299 output(fp, indent, &offset, "%s=%s", SHA512KEY, digestbuf); in statf()
305 output(fp, indent, &offset, "link=%s", in statf()
310 output(fp, indent, &offset, "flags=%s", str); in statf()
465 output(FILE *fp, int indent, int *offset, const char *fmt, ...) in output() argument
475 fprintf(fp, " \\\n%*s", INDENTNAMELEN + indent, ""); in output()
476 *offset = INDENTNAMELEN + indent; in output()