Lines Matching defs:temp_path
294 const char *dest_dir, *temp_path, *dest_path, *p;
319 temp_path = t_strdup_printf("%s/%s", dest_dir,
324 out_fd = file->storage->v.file_create_fd(file, temp_path, TRUE);
333 temp_path, o_stream_get_error(output));
341 "fsync(%s) failed: %m", temp_path);
347 "close(%s) failed: %m", temp_path);
351 i_unlink(temp_path);
358 if (utime(temp_path, &ut) < 0) {
360 "utime(%s) failed: %m", temp_path);
366 if (rename(temp_path, dest_path) < 0) {
368 "rename(%s, %s) failed: %m", temp_path, dest_path);
369 i_unlink_if_exists(temp_path);