HomeSort by relevance Sort by last modified time
    Searched refs:target_path (Results 1 - 25 of 29) sorted by null

1 2

  /external/skia/bin/
fetch-clang-format 18 target_path = 'buildtools/linux64/' + target if 'linux' in sys.platform else \
22 sha1_path = target_path + '.sha1'
35 if sha1_of_file(target_path) != sha1:
36 with open(target_path, 'wb') as f:
40 os.chmod(target_path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR |
44 target_copy_path = os.path.join('bin', os.path.basename(target_path))
46 shutil.copy(target_path, target_copy_path)
  /external/skqp/bin/
fetch-clang-format 18 target_path = 'buildtools/linux64/' + target if 'linux' in sys.platform else \
22 sha1_path = target_path + '.sha1'
35 if sha1_of_file(target_path) != sha1:
36 with open(target_path, 'wb') as f:
40 os.chmod(target_path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR |
44 target_copy_path = os.path.join('bin', os.path.basename(target_path))
46 shutil.copy(target_path, target_copy_path)
  /external/e2fsprogs/contrib/android/
basefs_allocator.h 11 errcode_t base_fs_alloc_set_target(ext2_filsys fs, const char *target_path,
13 errcode_t base_fs_alloc_unset_target(ext2_filsys fs, const char *target_path,
basefs_allocator.c 115 errcode_t base_fs_alloc_set_target(ext2_filsys fs, const char *target_path,
127 target_path,
128 strlen(target_path));
133 const char *target_path EXT2FS_ATTR((unused)),
  /system/update_engine/payload_consumer/
install_plan.cc 108 partition.name, target_slot, &partition.target_path) && result;
110 partition.target_path.clear();
122 target_path == that.target_path &&
postinstall_runner_action.cc 109 utils::MakePartitionNameForMount(partition.target_path);
111 LOG(ERROR) << "Cannot make mountable device from " << partition.target_path;
172 << abs_path << ") installed on device " << partition.target_path
190 command.push_back(partition.target_path);
install_plan.h 49 // Load the |source_path| and |target_path| of all |partitions| based on the
101 std::string target_path; member in struct:chromeos_update_engine::InstallPlan::Partition
filesystem_verifier_action_unittest.cc 154 part.target_path = a_dev;
266 part.target_path = "/no/such/file";
filesystem_verifier_action.cc 104 part_path = partition.target_path;
postinstall_runner_action_unittest.cc 174 part.target_path = device_path;
  /external/e2fsprogs/misc/
create_inode.h 28 errcode_t (* create_new_inode)(ext2_filsys fs, const char *target_path,
32 const char *target_path, const char *name,
  /test/vts-testcase/vndk/dependency/
VtsVndkDependencyTest.py 73 target_path: String. The path to the ELF file on target.
80 def __init__(self, target_path, bitness, deps):
81 self.target_path = target_path
82 self.name = path_utils.TargetBaseName(target_path)
83 self.target_dir = path_utils.TargetDirName(target_path)
136 (target_path, exception). It is called when
146 target_path = path_utils.JoinTargetPath(
151 logging.debug("%s is not an ELF file", target_path)
154 logging.debug("%s does not match the ABI", target_path)
    [all...]
  /external/jsoncpp/scons-tools/
targz.py 43 target_path = str(target[0])
44 fileobj = gzip.GzipFile( target_path, 'wb', compression )
45 tar = tarfile.TarFile(os.path.splitext(target_path)[0], 'w', fileobj)
  /frameworks/base/libs/androidfw/tests/
ApkAssets_test.cpp 85 const std::string target_path = GetTestDataPath() + "/basic/basic.apk"; local
86 ASSERT_TRUE(ReadFileFromZipToString(target_path, "resources.arsc", &contents));
100 ASSERT_THAT(target_table.createIdmap(overlay_table, 0u, 0u, target_path.c_str(),
  /test/vts/drivers/hal/common/driver_base/
DriverBase.cpp 95 string target_path(target_dll_path_);
97 size_t offset = target_path.rfind("/", target_path.length());
100 target_path.substr(offset + 1, target_path.length() - offset);
  /external/libchrome/base/files/
file_util_posix.cc 326 // the suffix after from_path to to_path to create the target_path.
327 FilePath target_path(to_path);
329 if (!from_path_base.AppendRelativePath(current, &target_path)) {
336 if (mkdir(target_path.value().c_str(),
341 << target_path.value() << " errno = " << errno;
345 if (!CopyFile(current, target_path)) {
347 << target_path.value();
451 bool CreateSymbolicLink(const FilePath& target_path,
454 DCHECK(!target_path.empty());
455 return ::symlink(target_path.value().c_str()
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor_util/
move.py 28 os.rename(move.source_path, move.target_path)
56 def target_path(self): member in class:_Move
  /system/libufdt/
ufdt_overlay.c 325 const char *target_path; local
341 target_path =
343 if (target_path == NULL) {
347 *target_node = ufdt_get_node_by_path(tree, target_path);
349 dto_error("failed to find target-path %s\n", target_path);
  /external/autotest/client/cros/
network_chroot.py 247 for src_path, target_path in self.ROOT_SYMLINKS:
249 os.symlink(target_path, link_path)
  /external/perfetto/tools/
install-build-deps 219 target_path = os.path.join(path, info.filename)
221 os.chmod(target_path, (info.external_attr >> 16L) | min_acls)
  /external/autotest/client/bin/
site_sysinfo.py 221 target_path = os.path.join(dest_dir,
223 target_dir = os.path.dirname(target_path)
226 with open(target_path, "w") as out_log:
  /art/runtime/
oat_file_assistant_test.cc 1076 std::vector<std::string> target_path; local
    [all...]
  /system/update_engine/payload_generator/
generate_delta_main.cc 206 const string& target_path = config.target.partitions[i].path; local
208 part_name, install_plan.target_slot, target_path);
220 << " source: " << source_path << " target: " << target_path; local
  /external/jsoncpp/
makerelease.py 136 def download( url, target_path ):
137 """Download file represented by url to target_path.
144 fout = open( target_path, 'wb' )
  /prebuilts/sdk/update_prebuilts/
update_prebuilts.py     [all...]

Completed in 343 milliseconds

1 2