Lines Matching refs:ept
61 static int finalck_warning(struct cfent *ept, int attrchg, int contchg);
62 static int finalck_error(struct cfent *ept, int attrchg, int contchg);
65 finalck(struct cfent *ept, int attrchg, int contchg, boolean_t a_warning)
75 errflg = finalck_warning(ept, attrchg, contchg);
77 errflg = finalck_error(ept, attrchg, contchg);
82 echoDebug(DBG_FINALCK_EXIT, errflg, ept->ftype,
83 ept->path ? ept->path : "");
95 finalck_error(struct cfent *ept, int attrchg, int contchg)
101 echoDebug(DBG_FINALCK_ERROR, attrchg, contchg, ept->ftype,
102 ept->path ? ept->path : "");
110 n = averify(1, &ept->ftype, ept->path, &ept->ainfo);
113 logerr(ERR_FINALCK_ATTR, ept->path);
124 if (contchg && strchr("fev", ept->ftype)) {
130 ept->cinfo.modtime = BADCONT;
131 ept->cinfo.size = BADCONT;
132 ept->cinfo.cksum = BADCONT;
135 n = cverify(1, &ept->ftype, ept->path, &ept->cinfo, 1);
138 logerr(ERR_FINALCK_CONT, ept->path);
153 finalck_warning(struct cfent *ept, int attrchg, int contchg)
159 echoDebug(DBG_FINALCK_WARNING, attrchg, contchg, ept->ftype,
160 ept->path ? ept->path : "");
170 n = averify(1, &ept->ftype, ept->path, &ept->ainfo);
173 logerr(WRN_FINALCK_ATTR, ept->path);
184 if (contchg && strchr("fev", ept->ftype)) {
190 ept->cinfo.modtime = BADCONT;
191 ept->cinfo.size = BADCONT;
192 ept->cinfo.cksum = BADCONT;
195 n = cverify(1, &ept->ftype, ept->path, &ept->cinfo, 1);
198 logerr(WRN_FINALCK_CONT, ept->path);