Lines Matching defs:tempf
1195 char tempf[2048];
1210 snprintf(tempf, sizeof(tempf), "%s.%d-%d-" ARG_LL "x", fname, (int)getpid(),
1213 verbose(VERB_ALGO, "autotrust: write to disk: %s", tempf);
1214 out = fopen(tempf, "w");
1217 tempf, strerror(errno));
1220 if(!autr_write_contents(out, tempf, tp)) {
1223 unlink(tempf);
1238 unlink(tempf);
1246 if(rename(tempf, fname) < 0) {
1247 fatal_exit("rename(%s to %s): %s", tempf, fname, strerror(errno));