Lines Matching defs:temp_path
44 char *temp_path, *full_path;
249 i_assert(file->temp_path == NULL);
274 file->temp_path = i_strdup(str_c(str));
363 if (file->temp_path == NULL)
366 if (unlink(file->temp_path) < 0) {
368 file->temp_path);
373 i_free(file->temp_path);
382 i_assert(file->temp_path == NULL);
488 if ((ret = link(file->temp_path, file->full_path)) < 0) {
490 file->temp_path, file->full_path);
493 if (unlink(file->temp_path) < 0) {
495 file->temp_path);
500 i_free_and_null(file->temp_path);
505 if (rename(file->temp_path, file->full_path) < 0) {
507 file->temp_path, file->full_path);
514 i_free_and_null(file->temp_path);