Searched refs:dest_path (Results 1 – 2 of 2) sorted by relevance
/device/google/cuttlefish/host/libs/command_util/ |
D | snapshot_utils.cc | 75 std::string dest_path = dest_dir_path + "/" + src_base_path; in CopyDirectoryImpl() local 86 LOG(DEBUG) << "Creating link from " << dest_path << " to " << target; in CopyDirectoryImpl() 87 if (FileExists(dest_path, /* follow_symlink */ false)) { in CopyDirectoryImpl() 88 CF_EXPECTF(RemoveFile(dest_path), "Failed to unlink/remove file \"{}\"", in CopyDirectoryImpl() 89 dest_path); in CopyDirectoryImpl() 91 CF_EXPECTF(symlink(target.data(), dest_path.data()) == 0, in CopyDirectoryImpl() 92 "Creating symbolic link from {} to {} failed: {}", dest_path, in CopyDirectoryImpl() 104 << dest_path << ")"; in CopyDirectoryImpl() 105 CF_EXPECT(CopyDirectoryImpl(src_path, dest_path, predicate)); in CopyDirectoryImpl() 107 << src_path << ", " << dest_path << ")"; in CopyDirectoryImpl() [all …]
|
/device/google/cuttlefish/host/libs/config/ |
D | esp.cpp | 344 std::string dest_path; in Build() local 348 dest_path = kBootDestPathAA64; in Build() 351 dest_path = kBootDestPathRiscV64; in Build() 355 dest_path = kBootDestPathIA32; in Build() 362 builder.File(efi_loader_path_, dest_path, /* required */ true); in Build()
|