Searched refs:from_dir (Results 1 – 4 of 4) sorted by relevance
/aosp12/system/vold/bench/inodeop_bench/ |
H A D | inodeop_bench.cpp | 77 std::string from_dir; member 90 string_repr << "\t.from_dir = " << from_dir << ",\n"; in to_string() 102 from_dir = to_dir = "./"; in reset() 129 << " (default '" << command.from_dir << "').\n"; in usage() 196 int from_dir_fd = open(from_dir.c_str(), OPEN_DIR_FLAGS); in move_files() 228 int from_dir_fd = open(from_dir.c_str(), OPEN_DIR_FLAGS); in hardlink_files() 260 if (from_dir.back() != '/') from_dir.push_back('/'); in symlink_files() 281 bool exhaustive_readdir(const std::string& from_dir) { in exhaustive_readdir() argument 282 DIR* dir = opendir(from_dir.c_str()); in exhaustive_readdir() 308 delete_files(command.from_dir, command.n_file, command.from_basename); in create_workload() [all …]
|
/aosp12/system/core/init/ |
H A D | mount_namespace.cpp | 111 static Result<void> ActivateFlattenedApexesFrom(const std::string& from_dir, in ActivateFlattenedApexesFrom() argument 113 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(from_dir.c_str()), closedir); in ActivateFlattenedApexesFrom() 129 const std::string apex_path = from_dir + "/" + name; in ActivateFlattenedApexesFrom()
|
/aosp12/build/make/tools/releasetools/ |
H A D | merge_target_files.py | 290 def copy_items(from_dir, to_dir, patterns): argument 293 for dirpath, _, filenames in os.walk(from_dir): 295 os.path.relpath(path=os.path.join(dirpath, filename), start=from_dir) 303 original_file_path = os.path.join(from_dir, file_path)
|
/aosp12/build/make/core/ |
H A D | product_config.rbc | 367 def _find_and_copy(pattern, from_dir, to_dir): 369 return ["%s/%s:%s/%s" % (from_dir, f, to_dir, f) for f in rblf_wildcard(pattern, from_dir)]
|