Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/libs/command_util/
Dsnapshot_utils.cc77 std::string src_path = src_dir_path + "/" + src_base_path; in CopyDirectoryImpl() local
80 LOG(DEBUG) << "Handling... " << src_path; in CopyDirectoryImpl()
83 CF_EXPECTF(lstat(src_path.data(), &src_stat) != -1, "Failed in lstat({})", in CopyDirectoryImpl()
84 src_path); in CopyDirectoryImpl()
87 CF_EXPECTF(android::base::Readlink(src_path, &target), in CopyDirectoryImpl()
88 "Readlink failed for {}", src_path); in CopyDirectoryImpl()
101 LOG(DEBUG) << "Ignoring a named pipe or socket " << src_path; in CopyDirectoryImpl()
105 if (DirectoryExists(src_path)) { in CopyDirectoryImpl()
106 LOG(DEBUG) << "Recursively calling CopyDirectoryImpl(" << src_path << ", " in CopyDirectoryImpl()
108 CF_EXPECT(CopyDirectoryImpl(src_path, dest_path, predicate)); in CopyDirectoryImpl()
[all …]
/device/google/cuttlefish_vmm/qemu/scripts/
Drebuild.py314 def copy_file(self, src_path: Path, dst_path: Path):
320 self._runner(["cp", "-f", src_path, dst_path], None, None)