Lines Matching refs:local
38 char *local; member
83 free(i->local); in raw_import_unref()
242 r = install_file(AT_FDCWD, i->temp_path ?: i->local, in raw_import_finish()
261 assert(i->local); in raw_import_open_disk()
267 (void) mkdir_parents_label(i->local, 0700); in raw_import_open_disk()
275 …i->output_fd = open(i->local, O_RDWR|O_NOCTTY|O_CLOEXEC|(i->offset == UINT64_MAX ? O_TRUNC|O_CREAT… in raw_import_open_disk()
277 … return log_error_errno(errno, "Failed to open destination '%s': %m", i->local); in raw_import_open_disk()
280 (void) import_set_nocow_and_log(i->output_fd, i->local); in raw_import_open_disk()
282 i->final_path = strjoin(i->image_root, "/", i->local, ".raw"); in raw_import_open_disk()
484 const char *local, in raw_import_start() argument
492 assert(local); in raw_import_start()
496 if (!import_validate_local(local, flags)) in raw_import_start()
506 r = free_and_strdup(&i->local, local); in raw_import_start()