Lines Matching refs:ept
43 ppkgmap(struct cfent *ept, FILE *fp)
45 if (ept->path == NULL)
48 if (ept->volno) {
49 if (fprintf(fp, "%d ", ept->volno) < 0)
53 if (ept->ftype == 'i') {
54 if (fprintf(fp, "%c %s", ept->ftype, ept->path) < 0)
57 if (fprintf(fp, "%c %s %s", ept->ftype, ept->pkg_class,
58 ept->path) < 0)
62 if (ept->ainfo.local) {
63 if (fprintf(fp, "=%s", ept->ainfo.local) < 0)
67 if (strchr("cb", ept->ftype)) {
68 if (ept->ainfo.major == BADMAJOR) {
72 if (fprintf(fp, " %ld", ept->ainfo.major) < 0)
75 if (ept->ainfo.minor == BADMINOR) {
79 if (fprintf(fp, " %ld", ept->ainfo.minor) < 0)
84 if (strchr("dxcbpfve", ept->ftype)) {
85 if (fprintf(fp, ((ept->ainfo.mode == BADMODE) ? " ?" : " %04o"),
86 ept->ainfo.mode) < 0)
88 if (fprintf(fp, " %s %s", ept->ainfo.owner, ept->ainfo.group) <
98 if (strchr("ifve", ept->ftype)) {
99 if (fprintf(fp, ((ept->cinfo.size == BADCONT) ? " ?" : " %llu"),
100 ept->cinfo.size) < 0)
102 if (fprintf(fp, ((ept->cinfo.cksum == BADCONT) ? " ?" : " %ld"),
103 ept->cinfo.cksum) < 0)
106 ((ept->cinfo.modtime == BADCONT) ? " ?" : " %ld"),
107 ept->cinfo.modtime) < 0)
111 if (ept->ftype == 'i') {