Home
last modified time | relevance | path

Searched refs:dest_path (Results 1 – 2 of 2) sorted by relevance

/device/google/cuttlefish/host/libs/command_util/
Dsnapshot_utils.cc78 std::string dest_path = dest_dir_path + "/" + src_base_path; in CopyDirectoryImpl() local
89 LOG(DEBUG) << "Creating link from " << dest_path << " to " << target; in CopyDirectoryImpl()
90 if (FileExists(dest_path, /* follow_symlink */ false)) { in CopyDirectoryImpl()
91 CF_EXPECTF(RemoveFile(dest_path), "Failed to unlink/remove file \"{}\"", in CopyDirectoryImpl()
92 dest_path); in CopyDirectoryImpl()
94 CF_EXPECTF(symlink(target.data(), dest_path.data()) == 0, in CopyDirectoryImpl()
95 "Creating symbolic link from {} to {} failed: {}", dest_path, in CopyDirectoryImpl()
107 << dest_path << ")"; in CopyDirectoryImpl()
108 CF_EXPECT(CopyDirectoryImpl(src_path, dest_path, predicate)); in CopyDirectoryImpl()
110 << src_path << ", " << dest_path << ")"; in CopyDirectoryImpl()
[all …]
/device/google/cuttlefish/host/libs/config/
Desp.cpp343 std::string dest_path; in Build() local
347 dest_path = kBootDestPathAA64; in Build()
350 dest_path = kBootDestPathRiscV64; in Build()
354 dest_path = kBootDestPathIA32; in Build()
361 builder.File(efi_loader_path_, dest_path, /* required */ true); in Build()