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

1 2

  /device/google/marlin/
preloads_copy.sh 25 dest_dir=/data/preloads
29 cp -rn $file $dest_dir &
  /external/autotest/client/bin/
local_host_unittest.py 211 dest_dir = os.path.join(self.tmpdir.name, 'dest')
213 host.get_file(source_dir, dest_dir)
215 self.assertTrue(os.path.isfile(os.path.join(dest_dir, 'dir', 'file')))
226 dest_dir = os.path.join(self.tmpdir.name, 'dest')
227 os.mkdir(dest_dir)
229 host.get_file(source_dir, dest_dir)
231 self.assertTrue(os.path.isfile(os.path.join(dest_dir, 'dir', 'file')))
242 dest_dir = os.path.join(self.tmpdir.name, 'dest')
243 os.mkdir(dest_dir)
244 os.mkdir(os.path.join(dest_dir, 'dir')
    [all...]
site_sysinfo.py 197 def _copy_new_data_in_file(self, file_path, src_dir, dest_dir):
202 @param dest_dir: target directory to store new data of src_dir.
221 target_path = os.path.join(dest_dir,
232 def _log_diff(self, src_dir, dest_dir):
233 """Log all of the new data in src_dir to dest_dir.
236 @param dest_dir: target directory to store new data of src_dir.
243 dest_dir = os.path.join(dest_dir, dir)
245 if not os.path.exists(dest_dir):
246 os.makedirs(dest_dir)
    [all...]
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 94 String dest_dir = outputFile.folder.getAbsolutePath(); local
97 if (dest_dir != null) {
98 dest_dir = dest_dir + File.separator + class_dir;
100 dest_dir = class_dir;
106 if (dest_dir == null) {
109 out_file = new File(dest_dir, class_name + ".dex");
111 // check that dest_dir exists
112 File dest = new File(dest_dir);
118 System.err.println("Cannot create directory " + dest_dir);
    [all...]
  /external/skia/infra/bots/recipe_modules/ct/
api.py 17 dest_dir, start_range, num_skps):
22 The SKPs are downloaded into subdirectories in the dest_dir.
29 dest_dir: path obj. The directory to download SKPs into.
34 slave_dest_dir = dest_dir.join('slave%s' % slave_num )
  /external/skqp/infra/bots/recipe_modules/ct/
api.py 17 dest_dir, start_range, num_skps):
22 The SKPs are downloaded into subdirectories in the dest_dir.
29 dest_dir: path obj. The directory to download SKPs into.
34 slave_dest_dir = dest_dir.join('slave%s' % slave_num )
  /cts/tools/dasm/src/dasm/
Main.java 115 String dest_dir = destPath; local
119 if (dest_dir != null) {
120 dest_dir = dest_dir + File.separator + class_dir;
122 dest_dir = class_dir;
129 if (dest_dir == null) {
133 out_file = new File(dest_dir, class_name + ".dex");
134 hr_file = new File(dest_dir, class_name + ".dxt");
136 // check that dest_dir exists
137 File dest = new File(dest_dir);
    [all...]
  /external/autotest/client/cros/video/
chameleon_screenshot_capturer.py 23 def __init__(self, chameleon_board, interface, display_facade, dest_dir,
29 @param dest_dir: path, full path to the dest dir to put the screenshot.
39 self.dest_dir = dest_dir
97 fullpath = os.path.join(self.dest_dir, filename)
  /external/clang/tools/scan-build-py/tests/unit/
test_intercept.py 54 def create_csrutil(dest_dir, status):
55 filename = os.path.join(dest_dir, 'csrutil')
59 def create_sestatus(dest_dir, status):
60 filename = os.path.join(dest_dir, 'sestatus')
  /frameworks/layoutlib/rename_font/
build_font.py 40 dest_dir = '/tmp' variable
70 global dest_dir
71 dest_dir = argv[-1]
74 os.chdir(dest_dir)
88 shutil.copy(input_path, dest_dir)
101 ttx_path = os.path.join(dest_dir, filename)
106 ttx_args = ['-q', '-d', dest_dir, input_path]
115 ttx_args = ['-q', '-d', dest_dir, ttx_path]
126 shutil.copy(input_path, dest_dir)
  /external/vulkan-validation-layers/build-android/
build.py 166 'dest_dir': 'third_party/shaderc',
182 'dest_dir': 'third_party/shaderc/third_party/spirv-tools',
195 'dest_dir':
206 'dest_dir': 'third_party/shaderc/third_party/glslang',
229 dest_dir = os.path.join(installdir, properties['dest_dir'])
232 dst = os.path.join(dest_dir, d)
237 print(source_dir, ':', dest_dir, ":", f)
242 install_file(f, source_dir, dest_dir)
244 print(source_dir, ':', dest_dir, ":", f, "SKIPPED"
    [all...]
  /pdk/build/
pdk_utils.py 70 dest_dir = os.path.dirname(dest_file)
71 if not os.path.isdir(dest_dir):
72 os.makedirs(dest_dir)
78 def copy_file_new_name_if_exists(src_full_name, dest_dir, dest_file):
79 """copy src_full_name (including dir + file name) to dest_dir/dest_file
84 dest_full_name = dest_dir + "/" + dest_file
85 if not os.path.isdir(dest_dir):
86 os.makedirs(dest_dir)
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/build-android/
build.py 172 'dest_dir': 'third_party/shaderc',
188 'dest_dir': 'third_party/shaderc/third_party/spirv-tools',
199 'dest_dir':
209 'dest_dir': 'third_party/shaderc/third_party/glslang',
232 dest_dir = os.path.join(installdir, properties['dest_dir'])
235 dst = os.path.join(dest_dir, d)
240 print(source_dir, ':', dest_dir, ":", f)
245 install_file(f, source_dir, dest_dir)
247 print(source_dir, ':', dest_dir, ":", f, "SKIPPED"
    [all...]
  /system/extras/perfprofd/
perfprofdcore.h 32 void CommonInit(uint32_t use_fixed_seed, const char* dest_dir);
perfprofd_cmdline.cc 115 const std::string& dest_dir = config.destination_directory; local
118 std::string produced_file_path = dest_dir + "/" + PRODUCED_FILENAME;
127 "%s/perf.data.encoded.%d", dest_dir.c_str(),seq).c_str()) == 0) {
  /external/toolchain-utils/
remote_gcc_build.py 236 def ReplaceSysroot(chromeos_root, dest_dir, target):
245 command = 'sudo mv {0} {1}'.format(dest_dir, board_dir)
307 dest_dir):
312 local_flag = '--local -r {0}'.format(dest_dir)
360 '--dest_dir',
361 dest='dest_dir',
438 args.chrome_version, args.dest_dir)
439 if args.local or not args.dest_dir:
450 dest_dir = misc.CanonicalizePath(args.dest_dir)
    [all...]
  /system/core/adb/
bugreport.cpp 40 BugreportStandardStreamsCallback(const std::string& dest_dir, const std::string& dest_file,
44 dest_dir_(dest_dir),
171 // - if argument is empty, dest_dir is set as the current directory and dest_file_ will be the
229 std::string dest_file, dest_dir; local
233 if (!getcwd(&dest_dir)) {
240 dest_dir = argv[1];
267 BugreportStandardStreamsCallback bugz_callback(dest_dir, dest_file, show_progress, this);
  /system/extras/perfprofd/tests/
perfprofd_test.cc 190 for (const auto dir : { &dest_dir, &conf_dir }) {
237 // dest_dir is a temporary directory that we're using as the destination directory.
239 std::string dest_dir; member in class:PerfProfdTest
251 dest_dir = temp_dir1->path;
368 static std::string encoded_file_path(const std::string& dest_dir,
371 dest_dir.c_str(), seq);
374 static void readEncodedProfile(const std::string& dest_dir,
379 int perf_data_stat_result = stat(encoded_file_path(dest_dir, 0).c_str(), &statb);
385 FILE *ifp = fopen(encoded_file_path(dest_dir, 0).c_str(), "r");
502 std::string ddparam("destination_directory="); ddparam += dest_dir;
    [all...]
  /external/toolchain-utils/fdo_scripts/
profile_cycler.py 68 dest_dir = os.path.join(self._profile_dir,
71 if os.path.exists(dest_dir):
72 command = 'rm -rf %s' % dest_dir
79 command = 'mkdir -p %s' % dest_dir
82 dest_dir,
  /external/e2fsprogs/debugfs/
dump.c 330 char *dest_dir; local
338 dest_dir = argv[argc - 1];
342 if (stat(dest_dir, &st) == -1) {
343 com_err("rdump", errno, "while statting %s", dest_dir);
347 com_err("rdump", 0, "%s is not a directory", dest_dir);
367 rdump_inode(ino, &inode, basename, dest_dir);
  /external/tensorflow/tensorflow/tools/pip_package/
build_pip_package.sh 26 local dest_dir=$2
28 cp -R "$f" "$dest_dir"
30 mkdir -p "${dest_dir}/local_config_cuda/cuda/cuda/"
31 cp "${src_dir}/local_config_cuda/cuda/cuda/cuda_config.h" "${dest_dir}/local_config_cuda/cuda/cuda/"
  /external/autotest/utils/
packager.py 90 def get_build_dir(name, dest_dir, pkg_type):
105 base_build_dir = os.path.join(dest_dir, 'client')
115 action, dest_dir=None):
145 build_dir = get_build_dir(name, dest_dir, pkg_type)
374 action=cur_action, dest_dir=options.output_dir)
378 action=cur_action, dest_dir=options.output_dir)
382 action=cur_action, dest_dir=options.output_dir)
  /external/skia/tools/skp/
webpages_playback.py 328 self._local_skp_dir, dest_dir=dest_dir_name)
441 def upload_dir_contents(self, source_dir, dest_dir):
472 def upload_dir_contents(self, source_dir, dest_dir):
474 'gsutil', 'cp', '-r', source_dir, '/'.join((self._url, dest_dir))])
490 def upload_dir_contents(self, source_dir, dest_dir):
491 def copytree(source_dir, dest_dir):
492 if not os.path.exists(dest_dir):
493 os.makedirs(dest_dir)
496 dest = os.path.join(dest_dir, item)
501 copytree(source_dir, os.path.join(self._base_dir, dest_dir))
    [all...]
  /external/skqp/tools/skp/
webpages_playback.py 328 self._local_skp_dir, dest_dir=dest_dir_name)
441 def upload_dir_contents(self, source_dir, dest_dir):
472 def upload_dir_contents(self, source_dir, dest_dir):
474 'gsutil', 'cp', '-r', source_dir, '/'.join((self._url, dest_dir))])
490 def upload_dir_contents(self, source_dir, dest_dir):
491 def copytree(source_dir, dest_dir):
492 if not os.path.exists(dest_dir):
493 os.makedirs(dest_dir)
496 dest = os.path.join(dest_dir, item)
501 copytree(source_dir, os.path.join(self._base_dir, dest_dir))
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
data_utils_test.py 41 dest_dir = self.get_temp_dir()
60 untar=True, cache_subdir=dest_dir)
66 untar=True, cache_subdir=dest_dir)
69 extract=True, cache_subdir=dest_dir)
83 extract=True, cache_subdir=dest_dir)
86 extract=True, cache_subdir=dest_dir)

Completed in 543 milliseconds

1 2