/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | 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) 68 self.bucket, self.remote_path, self.local_path) 72 new_bucket, self.remote_path, self.local_path) [all …]
|
D | uploader.py | 17 def __init__(self, bucket, remote_path, local_path, cs_backup_path=None): argument 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/chromium-trace/catapult/common/py_utils/py_utils/ |
D | cloud_storage.py | 196 def Exists(bucket, remote_path): argument 198 _RunCommand(['ls', 'gs://%s/%s' % (bucket, remote_path)]) 204 def Move(bucket1, bucket2, remote_path): argument 205 url1 = 'gs://%s/%s' % (bucket1, remote_path) 206 url2 = 'gs://%s/%s' % (bucket2, remote_path) 229 def Delete(bucket, remote_path): argument 230 url = 'gs://%s/%s' % (bucket, remote_path) 235 def Get(bucket, remote_path, local_path): argument 237 _GetLocked(bucket, remote_path, local_path) 338 def _GetLocked(bucket, remote_path, local_path): argument [all …]
|
D | cloud_storage_unittest.py | 54 def _FakeGet(self, bucket, remote_path, local_path): argument 95 remote_path = 'test-remote-path.html' 98 remote_path, local_path)
|
/external/autotest/server/cros/cfm/ |
D | cfm_base_test.py | 96 remote_path = self.cfm_facade.take_screenshot() 97 if remote_path: 100 remote_path, 131 def _safe_copy_file(self, remote_path, local_path): argument 137 remote_path, local_path) 138 self._host.get_file(remote_path, local_path) 141 'Exception while copying file "%s"', remote_path)
|
/external/toolchain-utils/ |
D | repo_to_repo.py | 30 remote_path, local_path = mapping.split() 31 if local_path.endswith('/') and not remote_path.endswith('/'): 32 local_path = os.path.join(local_path, os.path.basename(remote_path)) 33 remote_path = remote_path.lstrip('/').split('/', 1)[1] 34 canonical_mappings.append(perforce.PathMapping(remote_path, local_path)) 41 remote_path = parts[0] 46 return remote_path, local_path 173 remote_path, local_path = SplitMapping(mapping) 174 command = 'svn co %s/%s %s' % (self.address, remote_path, local_path) 181 remote_path, local_path = SplitMapping(mapping) [all …]
|
/external/skqp/platform_tools/android/skp_gen/ |
D | 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/skia/platform_tools/android/skp_gen/ |
D | 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/server/cros/multimedia/ |
D | audio_facade_adapter.py | 116 def get_recorded_file(self, remote_path, local_path): argument 123 self._client.get_file(remote_path, local_path) 189 _, remote_path = tempfile.mkstemp( 191 self._audio_proxy.dump_diagnostics(remote_path) 192 self._client.get_file(remote_path, file_path)
|
D | display_facade_adapter.py | 227 remote_path = os.path.join('/tmp', basename) 228 screenshot_func(remote_path) 229 self._client.get_file(remote_path, f.name)
|
/external/autotest/client/common_lib/ |
D | packages.py | 60 hostline, remote_path = parse_ssh_path(repo) 62 cd_str = 'cd %s && ' % remote_path 79 remote_path = repo 81 _, remote_path = parse_ssh_path(repo) 82 repo_run_command(repo, 'mkdir -p %s' % remote_path, cd=False) 574 hostline, remote_path = parse_ssh_path(upload_path) 577 remote_path)) 578 r_path = os.path.join(remote_path, 610 hostline, remote_path = parse_ssh_path(upload_path) 613 remote_path)) [all …]
|
D | file_utils.py | 122 def download_file(remote_path, local_path): argument 150 remote_file = urllib2.urlopen(remote_path) 160 % (remote_path, e.code, e.reason, e.headers, e.msg)) 166 % (remote_path, e.reason, e.message))
|
/external/chromium-trace/catapult/common/bin/ |
D | update_chrome_reference_binaries | 139 remote_path = '%s/%s/%s/%s' % ( 141 if not cloud_storage.Exists(CHROME_GS_BUCKET, remote_path): 143 'Failed to find %s build for version %s at path %s.' % (platform, version, remote_path)) 150 cloud_storage.Get(CHROME_GS_BUCKET, remote_path, local_dest_path)
|
/external/autotest/client/site_tests/firmware_TouchMTB/tools/ |
D | expect_scp | 9 set remote_path [lindex $argv 0] 11 "$local_path" "$remote_path"
|
/external/skia/experimental/tools/ |
D | android_skp_capture.sh | 27 remote_path="/data/data/${package}/cache/${filename}" 30 adb shell "setprop '${key}' '${remote_path}'"
|
/external/skqp/experimental/tools/ |
D | android_skp_capture.sh | 27 remote_path="/data/data/${package}/cache/${filename}" 30 adb shell "setprop '${key}' '${remote_path}'"
|
/external/autotest/server/site_tests/provision_CheetsUpdate/lib/ |
D | build_artifact_fetcher.py | 43 def fetch(self, remote_path, local_path): argument 50 remote_path, local_path)
|
/external/v8/gypfiles/ |
D | download_gold_plugin.py | 65 remote_path = '%s/%s' % (CLANG_BUCKET, targz_name) 74 'cp', remote_path, targz_name],
|
/external/autotest/client/cros/chameleon/ |
D | audio_widget_arc.py | 50 def get_recorded_binary(self, remote_path, record_format): argument 82 self._audio_facade.get_recorded_file(remote_path, f.name)
|
D | audio_widget.py | 379 def get_recorded_binary(self, remote_path, record_format): argument 397 self._chameleon_board.host.get_file(remote_path, f.name) 721 def get_recorded_binary(self, remote_path, record_format): argument 744 self._audio_facade.get_recorded_file(remote_path, f.name)
|
/external/autotest/client/site_tests/video_HangoutHardwarePerf/ |
D | video_HangoutHardwarePerf.py | 160 def _download_single_file(self, remote_path): argument 161 url = DOWNLOAD_BASE + remote_path 174 filename = os.path.basename(remote_path)
|
/external/autotest/server/ |
D | crashcollect.py | 328 for hostname, remote_path, local_path in logs: 331 hostname, remote_path, local_path) 332 collect_log_file(host, remote_path + '/', local_path + '/')
|
/external/toolchain-utils/automation/clients/helper/ |
D | perforce.py | 37 for remote_path, local_path in tuple_list: 38 mappings.append(cls(remote_path, local_path))
|
/external/autotest/server/site_tests/audiovideo_AVSync/ |
D | audiovideo_AVSync.py | 202 remote_path, _ = audio_port.stop_capturing_audio() 207 chameleon_board.host.get_file(remote_path, local_path)
|
/external/autotest/server/cros/faft/ |
D | firmware_test.py | 1356 remote_path = os.path.join(remote_temp_dir, 'kernel_%s' % p) 1357 self.faft_client.kernel.dump(p, remote_path) 1359 remote_path, 1390 remote_path = os.path.join(remote_temp_dir, 'kernel_%s' % p) 1393 remote_path) 1394 self.faft_client.kernel.write(p, remote_path)
|