/external/chromium-trace/catapult/devil/devil/utils/ |
D | file_utils.py | 8 def MergeFiles(dest_file, source_files): argument 16 if not os.path.exists(os.path.dirname(dest_file)): 17 os.makedirs(os.path.dirname(dest_file)) 19 with open(dest_file, 'w') as dest_f: 26 os.remove(dest_file)
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/ |
D | copy_file_large.pass.cpp | 88 std::ifstream dest_file(dest.native()); in TEST_CASE() local 89 TEST_REQUIRE(dest_file); in TEST_CASE() 90 dest_file.seekg(sendfile_size_limit); in TEST_CASE() 91 TEST_REQUIRE(dest_file); in TEST_CASE() 92 dest_file >> out_data; in TEST_CASE() 93 TEST_CHECK(dest_file.eof()); in TEST_CASE()
|
/external/autotest/server/hosts/ |
D | teststation_host.py | 139 def download_file(self, src_url, dest_file, unzip=False, unzip_dest=None): argument 151 self.run('wget -q -O "%s" "%s"' % (dest_file, src_url)) 153 readlink_result = self.run('readlink -f "%s"' % dest_file) 158 self.run('unzip "%s" -x -d "%s"' % (dest_file, unzip_dest)) 163 self.run('rm -f "%s"' % dest_file)
|
D | adb_host.py | 1148 dest_file = os.path.join(dest_dir, file) 1150 self.teststation.run('wget -q -O "%s" "%s"' % (dest_file, src_url)) 1157 self.teststation.run('rm -f "%s"' % dest_file)
|
/external/toolchain-utils/cros_utils/ |
D | logger.py | 87 dest_file = '%s.%s' % (basename, extension) 88 if os.path.exists(dest_file): 89 os.remove(dest_file) 90 os.symlink(src_file, dest_file) 253 dest_file = '%s.%s' % (basename, extension) 254 print('MockLogger: Calling os.symlink(%s, %s)' % (src_file, dest_file))
|
/external/skqp/tools/svg/ |
D | svg_downloader.py | 22 dest_file = os.path.join(output_dir, prefix + os.path.basename(svg_url)) 24 urllib.urlretrieve(svg_url, dest_file)
|
/external/skia/tools/svg/ |
D | svg_downloader.py | 22 dest_file = os.path.join(output_dir, prefix + os.path.basename(svg_url)) 24 urllib.urlretrieve(svg_url, dest_file)
|
/external/icu/tools/ |
D | icuutil.py | 164 def MakeAndCopyOverlayTzIcuData(icu_build_dir, dest_file): argument 234 shutil.copyfile(generated_dat_file, dest_file) 235 print('ICU overlay .dat can be found here: %s' % dest_file)
|
/external/python/cpython3/Lib/test/ |
D | test_symbol.py | 17 def _copy_file_without_generated_symbols(self, source_file, dest_file): argument 20 with open(dest_file, 'w') as fp:
|
D | test_keyword.py | 41 def _copy_file_without_generated_keywords(self, source_file, dest_file): argument 45 with open(dest_file, 'wb') as fp:
|
/external/autotest/server/cros/ |
D | sonic_extension_downloader.py | 54 def download_extension(dest_file): argument 62 with open(dest_file, 'w') as f:
|
/external/python/cpython3/Tools/importbench/ |
D | importbench.py | 219 if options.dest_file: 220 with options.dest_file: 221 json.dump(new_results, options.dest_file, indent=2)
|
/external/tensorflow/tensorflow/tools/git/ |
D | gen_git_source.py | 252 spec, head_symlink, _, dest_file = arglist 265 write_version_info(dest_file, git_version)
|
/external/autotest/client/bin/ |
D | local_host_unittest.py | 197 dest_file = os.path.join(self.tmpdir.name, 'dest') 199 host.get_file(source_file, dest_file) 200 self.assertTrue(os.path.isfile(dest_file))
|
/external/vulkan-validation-layers/scripts/ |
D | helper_file_generator.py | 148 dest_file = '' 149 dest_file += self.OutputDestFile() 151 if dest_file.endswith('\n'): 152 dest_file = dest_file[:-1] 153 write(dest_file, file=self.outFile);
|
/external/toolchain-utils/ |
D | repo_to_repo.py | 81 dest_file = os.path.join(dest_dir, f) 83 if os.path.exists(dest_file): 84 command = 'rm -rf %s' % dest_file
|
/external/u-boot/include/ |
D | qfw.h | 124 char dest_file[BIOS_LINKER_LOADER_FILESZ]; member
|
/external/autotest/contrib/ |
D | coverage.py | 890 dest_file = os.path.join(directory, 894 dest_file = filename + ',cover' 895 dest = open(dest_file, 'w')
|
/external/autotest/client/common_lib/ |
D | utils_unittest.py | 457 dest_file = self.god.create_mock_class(file, "file") 461 utils.open.expect_call(dest, "wb").and_return(dest_file) 462 utils.shutil.copyfileobj.expect_call(src_file, dest_file) 463 dest_file.close.expect_call()
|
D | utils.py | 576 dest_file = open(filename, 'wb') 578 shutil.copyfileobj(src_file, dest_file) 580 dest_file.close()
|
/external/u-boot/drivers/misc/ |
D | qfw.c | 102 dest = qemu_fwcfg_find_file(entry->pointer.dest_file); in bios_linker_add_pointer()
|
/external/libchrome/base/files/ |
D | file_path_watcher_unittest.cc | 601 FilePath dest_file(dest_subdir.AppendASCII("file")); in TEST_F() local 608 ASSERT_TRUE(SetupWatch(dest_file, &file_watcher, file_delegate.get(), false)); in TEST_F()
|
/external/toolchain-utils/crosperf/ |
D | results_cache.py | 69 dest_file = os.path.join( 71 ret = self.ce.CopyFiles(file_to_copy, dest_file, recursive=False)
|