Lines Matching defs:tempf
1199 char tempf[2048];
1214 snprintf(tempf, sizeof(tempf), "%s.%d-%d-" ARG_LL "x", fname, (int)getpid(),
1217 verbose(VERB_ALGO, "autotrust: write to disk: %s", tempf);
1218 out = fopen(tempf, "w");
1221 tempf, strerror(errno));
1224 if(!autr_write_contents(out, tempf, tp)) {
1227 unlink(tempf);
1242 unlink(tempf);
1250 if(rename(tempf, fname) < 0) {
1251 fatal_exit("rename(%s to %s): %s", tempf, fname, strerror(errno));