/external/autotest/client/site_tests/firmware_TouchMTB/tools/ |
expect_scp | 9 set remote_path [lindex $argv 0] 11 "$local_path" "$remote_path"
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
uploader_unittest.py | 18 self.remote_path = 'config_folder/remote_path' 22 None, self.remote_path, self.local_path) 26 self.bucket, self.remote_path, None) 31 self.bucket, self.remote_path, self.local_path) 35 self.bucket, self.remote_path, self.local_path) 37 expected_remote_path = self.remote_path 47 self.bucket, self.remote_path, self.local_path) 49 self.bucket, self.remote_path, self.local_path) 52 'config_folder/remote_path', [all...] |
uploader.py | 17 def __init__(self, bucket, remote_path, local_path, cs_backup_path=None): 18 if not bucket or not remote_path or not local_path: 21 'remote_path %s, and local_path %s', bucket, remote_path, local_path) 27 self._cs_remote_path = remote_path
|
/external/skia/infra/bots/flavor/ |
ssh_flavor.py | 81 def _make_scp_cmd(self, remote_path, recurse=True): 91 adj_remote_path = self.host + ':' + remote_path 98 _, remote_path = self._make_scp_cmd(device_dir) 101 host_dir, remote_path] 106 _, remote_path = self._make_scp_cmd(device_dir) 109 remote_path, host_dir] 114 cmd, remote_path = self._make_scp_cmd(device_path, recurse=False) 115 cmd.extend([host_path, remote_path])
|
chromeos_flavor.py | 29 remote_path = self.device_path_join(self.device_bin_dir, cmd[0]) 30 self.copy_file_to_device(local_path, remote_path) 32 cmd=[remote_path]+cmd[1:],
|
/external/v8/build/ |
download_gold_plugin.py | 33 remote_path = '%s/%s' % (CLANG_BUCKET, targz_name) 42 'cp', remote_path, targz_name],
|
/external/autotest/site_utils/deploy_autotest/ |
lab_deploy.py | 55 remote_path = os.path.join(_AUTOTEST_PATH, _HELPER_PATH) 57 '%(remote_path)s/lab_deploy_helper.py %(argv)s' % 58 dict(remote_path=remote_path, master=master,
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/ |
html2_output_formatter.py | 29 remote_path = ('html-results/results-%s' % 33 cloud_storage.PUBLIC_BUCKET, remote_path, file_path) 35 print 'http://storage.googleapis.com/chromium-telemetry/' + remote_path
|
/external/autotest/server/cros/multimedia/ |
audio_facade_adapter.py | 100 def get_recorded_file(self, remote_path, local_path): 103 @param remote_path: The path to the file on DUT. 107 self._client.get_file(remote_path, local_path) 164 _, remote_path = tempfile.mkstemp( 166 self._audio_proxy.dump_diagnostics(remote_path) 167 self._client.get_file(remote_path, file_path)
|
display_facade_adapter.py | 214 to specified path on DUT. Usage: screenshot_func(remote_path). 222 remote_path = os.path.join('/tmp', basename) 223 screenshot_func(remote_path) 224 self._client.get_file(remote_path, f.name)
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
cloud_storage.py | 184 def Exists(bucket, remote_path): 186 _RunCommand(['ls', 'gs://%s/%s' % (bucket, remote_path)]) 192 def Move(bucket1, bucket2, remote_path): 193 url1 = 'gs://%s/%s' % (bucket1, remote_path) 194 url2 = 'gs://%s/%s' % (bucket2, remote_path) 217 def Delete(bucket, remote_path): 218 url = 'gs://%s/%s' % (bucket, remote_path) 223 def Get(bucket, remote_path, local_path): 225 _GetLocked(bucket, remote_path, local_path) 268 def _GetLocked(bucket, remote_path, local_path) [all...] |
cloud_storage_unittest.py | 49 def _FakeGet(self, bucket, remote_path, local_path): 87 remote_path = 'test-remote-path.html' 90 remote_path, local_path) 119 'remote_path', 'local_path', 'cs_bucket', 'hash') 121 get_mock.assert_called_once_with('cs_bucket', 'remote_path', 'local_path') 129 'remote_path', 'local_path', 'cs_bucket', 'new_hash') 131 get_mock.assert_called_once_with('cs_bucket', 'remote_path', 'local_path') 138 'remote_path', 'local_path', 'cs_bucket', 'hash')
|
/external/skia/platform_tools/android/skp_gen/ |
android_skp_capture.py | 109 remote_path = '/data/data/%s/cache/%s' % (package, os.path.basename(skp_file)) 111 adb_shell('rm %s' % remote_path) 113 if remote_file_exists(remote_path): 116 adb_shell('setprop debug.hwui.capture_frame_as_skp %s' % remote_path) 122 while not remote_file_exists(remote_path): 128 cmd = ['adb', 'pull', remote_path, skp_file]
|
/external/autotest/client/common_lib/ |
file_utils.py | 120 def download_file(remote_path, local_path): 124 @param remote_path: path, complete path to the remote file. 144 # If we could not find the file pointed by remote_path we will get an 148 remote_file = urllib2.urlopen(remote_path) 158 % (remote_path, e.code, e.reason, e.headers, e.msg)) 164 % (remote_path, e.reason, e.msg))
|
base_packages.py | 53 hostline, remote_path = parse_ssh_path(repo) 55 cd_str = 'cd %s && ' % remote_path 72 remote_path = repo 74 _, remote_path = parse_ssh_path(repo) 75 repo_run_command(repo, 'mkdir -p %s' % remote_path, cd=False) 546 hostline, remote_path = parse_ssh_path(upload_path) 549 remote_path)) 550 r_path = os.path.join(remote_path, 577 hostline, remote_path = parse_ssh_path(upload_path) 580 remote_path)) [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/testing/ |
system_stub.py | 190 def ChangeRemoteHashForTesting(self, bucket, remote_path, new_hash): 191 self.remote_paths[bucket][remote_path] = new_hash 201 def Exists(self, bucket, remote_path): 203 return remote_path in self.remote_paths[bucket] 205 def Insert(self, bucket, remote_path, local_path): 210 self.remote_paths[bucket][remote_path] = ( 212 return remote_path 214 def GetHelper(self, bucket, remote_path, local_path, only_if_changed): 216 if not remote_path in self.remote_paths[bucket]: 220 remote_hash = self.remote_paths[bucket][remote_path] [all...] |
/external/v8/gypfiles/ |
download_gold_plugin.py | 65 remote_path = '%s/%s' % (CLANG_BUCKET, targz_name) 74 'cp', remote_path, targz_name],
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/ |
browser_backend.py | 54 remote_path = (self.browser_options.logs_cloud_remote_path or 58 remote_path=remote_path,
|
browser_backend_unittest.py | 43 bucket='ABC', remote_path='def', local_path=temp_file_name)
|
/development/scripts/ |
gdbclient.py | 101 remote_path = "/system/bin/linker" 104 remote_path += "64" 106 device.pull(remote_path, local_path)
|
/external/autotest/server/ |
crashcollect.py | 173 for hostname, remote_path, local_path in logs: 176 hostname, remote_path, local_path) 177 host.get_file(remote_path + "/", local_path + "/")
|
/external/autotest/client/virt/ |
virt_test_utils.py | 447 def copy_if_hash_differs(vm, local_path, remote_path): 453 @param remote_path: Remote path. 460 output = session.cmd_output("md5sum %s" % remote_path) 467 remote_path) 476 vm.copy_files_to(local_path, remote_path) 480 def extract(vm, remote_path, dest_dir): 486 @param remote_path: Remote file path 489 basename = os.path.basename(remote_path) 492 dirname = os.path.dirname(remote_path)
|
/external/autotest/client/site_tests/video_HangoutHardwarePerf/ |
video_HangoutHardwarePerf.py | 160 def _download_single_file(self, remote_path): 161 url = DOWNLOAD_BASE + remote_path 170 filename = os.path.basename(remote_path)
|
/system/core/adb/ |
test_device.py | 650 def _verify_remote(self, checksum, remote_path): 652 remote_path])[0].split() 692 remote_path = posixpath.join(self.DEVICE_TEMP_DIR, 695 self._verify_remote(temp_file.checksum, remote_path) 752 remote_path = posixpath.join(self.DEVICE_TEMP_DIR, 754 self._verify_remote(temp_file.checksum, remote_path) 757 remote_path = posixpath.join(self.DEVICE_TEMP_DIR, 761 self._verify_remote(temp_file.checksum, remote_path) [all...] |
/external/autotest/client/cros/chameleon/ |
audio_widget.py | 368 @returns: A tuple (remote_path, data_format) for recorded data. 375 def get_recorded_binary(self, remote_path, record_format): 380 @param remote_path: The path to the recorded file on Chameleon. 393 self._chameleon_board.host.get_file(remote_path, f.name) 687 A tuple (remote_path, format). 688 remote_path: The path to the recorded file on Cros device. 700 def get_recorded_binary(self, remote_path, record_format): 705 @param remote_path: The path to the recorded file on Cros device. 723 self._audio_facade.get_recorded_file(remote_path, f.name)
|