Home
last modified time | relevance | path

Searched refs:dest_path (Results 1 – 10 of 10) sorted by relevance

/external/autotest/client/bin/
Dharness_autoserv.py85 def fetch_package(self, pkg_name, dest_path): argument
92 self._send_and_wait('AUTOTEST_FETCH_PACKAGE', pkg_name, dest_path)
101 def fetch_pkg_file(self, filename, dest_path): argument
102 if os.path.exists(dest_path):
103 os.remove(dest_path)
115 logging.info('Fetching %s from autoserv to %s.', filename, dest_path)
116 self.job_harness.fetch_package(filename, dest_path)
117 if os.path.exists(dest_path):
/external/owasp/sanitizer/tools/
Dcut_release.py101 dest_path = os.path.join(
105 os.mkdir(dest_path)
110 os.path.join(src_path, child), dest_path)
112 shutil.copyfile(src_path, dest_path)
113 mime_type = mime_type_from_path(dest_path)
115 files_to_rewrite.append(dest_path)
116 new_file_paths.append(dest_path)
117 return dest_path
/external/autotest/client/common_lib/
Dbase_packages.py119 def fetch_pkg_file(self, filename, dest_path): argument
162 def fetch_pkg_file(self, filename, dest_path): argument
164 dest_path)
172 cmd = self.wget_cmd_pattern % (package_url, dest_path)
177 'ls %s' % dest_path,
187 self.run_command('rm -f %s' % dest_path)
200 def fetch_pkg_file(self, filename, dest_path): argument
202 dest_path)
205 self.run_command('cp %s %s' % (local_path, dest_path))
406 def fetch_pkg(self, pkg_name, dest_path, repo_url=None, use_checksum=False): argument
[all …]
/external/autotest/server/
Dcrashcollect.py112 def collect_log_file(host, log_path, dest_path, use_tmp=False): argument
134 host.get_file(source_path, dest_path, preserve_perm=False)
141 def collect_command(host, command, dest_path): argument
158 utils.open_write_close(dest_path, result)
Dsite_autotest.py189 pkg_name, dest_path, fifo_path = fetch_package_match.groups()
197 self.host.send_file(checksum_file, dest_path)
Dsite_utils.py192 def remote_wget(source_url, dest_path, ssh_cmd): argument
201 (source_url, ssh_cmd, dest_path))
Dautotest.py1098 pkg_name, dest_path, fifo_path = fetch_package_match.groups()
1103 self._send_tarball(pkg_name, dest_path)
/external/autotest/server/cros/servo/
Dservo.py647 dest_path = os.path.join('/tmp', os.path.basename(image_path))
648 self._servo_host.send_file(image_path, dest_path)
649 return dest_path
/external/autotest/site_utils/
Dgs_offloader.py310 def offload_dir(dir_entry, dest_path): argument
332 gs_path = '%s%s' % (gs_uri, dest_path)
407 def delete_files(dir_entry, dest_path): argument
/external/autotest/server/hosts/
Dadb_host.py797 dest_path = os.path.join(tmp_dir, os.path.basename(source))
811 self.adb_run('pull %s %s' % (source, dest_path))
814 self.teststation.get_file(dest_path, dest)