Lines Matching refs:settings_temp_path
81 char *settings_temp_path;
108 if (i->settings_temp_path) {
109 (void) unlink(i->settings_temp_path);
110 free(i->settings_temp_path);
352 assert(i->settings_temp_path);
360 r = import_make_read_only(i->settings_temp_path);
364 r = rename_noreplace(AT_FDCWD, i->settings_temp_path, AT_FDCWD, i->settings_path);
370 i->settings_temp_path = mfree(i->settings_temp_path);
438 assert(!i->settings_temp_path);
444 r = tempfn_random(i->settings_path, NULL, &i->settings_temp_path);
448 mkdir_parents_label(i->settings_temp_path, 0700);
450 j->disk_fd = open(i->settings_temp_path, O_RDWR|O_CREAT|O_EXCL|O_NOCTTY|O_CLOEXEC, 0664);
452 return log_error_errno(errno, "Failed to create %s: %m", i->settings_temp_path);