Searched refs:target_path (Results 1 – 13 of 13) sorted by relevance
/external/skia/bin/ |
D | fetch-clang-format | 18 target_path = 'buildtools/linux64/' + target if 'linux' in sys.platform else \ 22 sha1 = open(target_path + '.sha1').read().strip() 31 if sha1_of_file(target_path) != sha1: 32 with open(target_path, 'wb') as f: 36 os.chmod(target_path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR | 40 target_copy_path = os.path.join('bin', os.path.basename(target_path)) 42 shutil.copy(target_path, target_copy_path)
|
/external/libmojo/ |
D | build_mojom.mk | 20 target_path := $(generated_sources_dir) 21 gen_cc := $$(target_path)/$$(mojom_file).cc 22 gen_h := $$(target_path)/$$(mojom_file).h 23 gen_internal_h := $$(target_path)/$$(mojom_file)-internal.h 24 gen_srcjar := $$(target_path)/$$(mojom_file).srcjar 36 $$(gen_cc) : PRIVATE_TARGET := $$(target_path)
|
D | build_generated_jni.mk | 18 target_path := $(generated_sources_dir)/jni 19 gen_h := $$(target_path)/$$(basename $$(notdir $$(java_file)))_jni.h 22 $$(gen_h) : PRIVATE_TARGET := $$(target_path)
|
D | build_mojom_jar.mk | 12 target_path := $(original_generated_sources_dir) 13 LOCAL_SRCJAR_LIST += $$(target_path)/$$(mojom_file).srcjar
|
/external/libchrome/base/files/ |
D | file_util_posix.cc | 317 FilePath target_path(to_path); in CopyDirectory() local 319 if (!from_path_base.AppendRelativePath(current, &target_path)) { in CopyDirectory() 326 if (mkdir(target_path.value().c_str(), in CopyDirectory() 331 << target_path.value() << " errno = " << errno; in CopyDirectory() 335 if (!CopyFile(current, target_path)) { in CopyDirectory() 337 << target_path.value(); in CopyDirectory() 403 bool CreateSymbolicLink(const FilePath& target_path, in CreateSymbolicLink() argument 406 DCHECK(!target_path.empty()); in CreateSymbolicLink() 407 return ::symlink(target_path.value().c_str(), in CreateSymbolicLink() 411 bool ReadSymbolicLink(const FilePath& symlink_path, FilePath* target_path) { in ReadSymbolicLink() argument [all …]
|
/external/jsoncpp/scons-tools/ |
D | 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)
|
/external/e2fsprogs/contrib/android/ |
D | 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,
|
D | basefs_allocator.c | 115 errcode_t base_fs_alloc_set_target(ext2_filsys fs, const char *target_path, in base_fs_alloc_set_target() argument 127 target_path); in base_fs_alloc_set_target() 132 const char *target_path EXT2FS_ATTR((unused)), in base_fs_alloc_unset_target()
|
/external/e2fsprogs/misc/ |
D | create_inode.h | 28 errcode_t (* create_new_inode)(ext2_filsys fs, const char *target_path, 32 const char *target_path, const char *name,
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor_util/ |
D | move.py | 28 os.rename(move.source_path, move.target_path) 56 def target_path(self): member in _Move
|
/external/autotest/client/bin/ |
D | site_sysinfo.py | 176 target_path = os.path.join(dest_dir, 178 target_dir = os.path.dirname(target_path) 181 with open(target_path, "w") as out_log:
|
/external/jsoncpp/ |
D | makerelease.py | 136 def download( url, target_path ): argument 144 fout = open( target_path, 'wb' )
|
/external/devlib/devlib/ |
D | target.py | 545 target_path = self.get_workpath(os.path.basename(path)) 546 self.push(path, target_path) 547 self.execute('insmod {}'.format(target_path), as_root=True)
|