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

1 2

  /external/autotest/client/site_tests/firmware_TouchMTB/tools/
expect_scp 9 set remote_path [lindex $argv 0]
11 "$local_path" "$remote_path"
  /external/skia/experimental/tools/
android_skp_capture.sh 27 remote_path="/data/data/${package}/cache/${filename}"
30 adb shell "setprop '${key}' '${remote_path}'"
52 while ! adb_test_exist "$remote_path"; do
72 while ! adb_test_file_nonzero "$remote_path"; do
86 adb pull "$remote_path" "$local_path"
91 adb shell rm "$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/chromium-trace/catapult/common/py_utils/py_utils/
cloud_storage.py 195 def Exists(bucket, remote_path):
197 _RunCommand(['ls', 'gs://%s/%s' % (bucket, remote_path)])
203 def Move(bucket1, bucket2, remote_path):
204 url1 = 'gs://%s/%s' % (bucket1, remote_path)
205 url2 = 'gs://%s/%s' % (bucket2, remote_path)
228 def Delete(bucket, remote_path):
229 url = 'gs://%s/%s' % (bucket, remote_path)
234 def Get(bucket, remote_path, local_path):
236 _GetLocked(bucket, remote_path, local_path)
337 def _GetLocked(bucket, remote_path, local_path)
    [all...]
cloud_storage_unittest.py 54 def _FakeGet(self, bucket, remote_path, local_path):
92 remote_path = 'test-remote-path.html'
95 remote_path, local_path)
124 'remote_path', 'local_path', 'cs_bucket', 'hash')
126 get_mock.assert_called_once_with('cs_bucket', 'remote_path', 'local_path')
134 'remote_path', 'local_path', 'cs_bucket', 'new_hash')
136 get_mock.assert_called_once_with('cs_bucket', 'remote_path', 'local_path')
143 '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.message))
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,
605 hostline, remote_path = parse_ssh_path(upload_path)
608 remote_path))
    [all...]
  /external/autotest/server/cros/multimedia/
audio_facade_adapter.py 105 def get_recorded_file(self, remote_path, local_path):
108 @param remote_path: The path to the file on DUT.
112 self._client.get_file(remote_path, local_path)
178 _, remote_path = tempfile.mkstemp(
180 self._audio_proxy.dump_diagnostics(remote_path)
181 self._client.get_file(remote_path, file_path)
display_facade_adapter.py 219 to specified path on DUT. Usage: screenshot_func(remote_path).
227 remote_path = os.path.join('/tmp', basename)
228 screenshot_func(remote_path)
229 self._client.get_file(remote_path, f.name)
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
system_stub.py 198 def ChangeRemoteHashForTesting(self, bucket, remote_path, new_hash):
199 self.remote_paths[bucket][remote_path] = new_hash
209 def Exists(self, bucket, remote_path):
211 return remote_path in self.remote_paths[bucket]
213 def Insert(self, bucket, remote_path, local_path):
218 self.remote_paths[bucket][remote_path] = (
220 return remote_path
222 def GetHelper(self, bucket, remote_path, local_path, only_if_changed):
224 if not remote_path in self.remote_paths[bucket]:
228 remote_hash = self.remote_paths[bucket][remote_path]
    [all...]
  /external/autotest/client/cros/chameleon/
audio_widget_arc.py 36 A tuple (remote_path, format).
37 remote_path: The path to the recorded file on Cros device.
50 def get_recorded_binary(self, remote_path, record_format):
55 The real file format of file at 'remote_path' can be another source
61 @param remote_path: The path to the recorded file on Cros device.
82 self._audio_facade.get_recorded_file(remote_path, f.name)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/results/
html_output_formatter.py 59 remote_path = ('html-results/results-%s' %
62 url = cloud_storage.Insert(self._upload_bucket, remote_path, file_path)
  /external/v8/gypfiles/
download_gold_plugin.py 65 remote_path = '%s/%s' % (CLANG_BUCKET, targz_name)
74 'cp', remote_path, targz_name],
  /external/toolchain-utils/
repo_to_repo.py 29 remote_path, local_path = mapping.split()
30 if local_path.endswith('/') and not remote_path.endswith('/'):
31 local_path = os.path.join(local_path, os.path.basename(remote_path))
32 remote_path = remote_path.lstrip('/').split('/', 1)[1]
33 canonical_mappings.append(perforce.PathMapping(remote_path, local_path))
40 remote_path = parts[0]
45 return remote_path, local_path
174 remote_path, local_path = SplitMapping(mapping)
175 command = 'svn co %s/%s %s' % (self.address, remote_path, local_path
    [all...]
  /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/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)
  /external/autotest/server/
crashcollect.py 272 for hostname, remote_path, local_path in logs:
275 hostname, remote_path, local_path)
276 collect_log_file(host, remote_path + '/', local_path + '/')
  /external/chromium-trace/catapult/telemetry/telemetry/value/
trace.py 148 remote_path = ('trace-file-id_%s-%s-%d%s' % (
154 bucket, remote_path, fh.GetAbsPath())
  /external/toolchain-utils/automation/clients/helper/
perforce.py 37 for remote_path, local_path in tuple_list:
38 mappings.append(cls(remote_path, local_path))
  /external/openssh/
sftp-client.c 1144 do_download(struct sftp_conn *conn, const char *remote_path,
1170 if (a == NULL && (a = do_stat(conn, remote_path, 0)) == NULL)
1181 error("Cannot download non-regular file: %s", remote_path);
1200 (r = sshbuf_put_cstring(msg, remote_path)) != 0 ||
1205 debug3("Sent message SSH2_FXP_OPEN I:%u P:%s", id, remote_path);
1208 "remote open(\"%s\")", remote_path);
    [all...]
  /system/core/adb/
test_device.py 729 def _verify_remote(self, checksum, remote_path):
731 remote_path])[0].split()
771 remote_path = posixpath.join(self.DEVICE_TEMP_DIR,
774 self._verify_remote(temp_file.checksum, remote_path)
861 remote_path = posixpath.join(self.DEVICE_TEMP_DIR,
863 self._verify_remote(temp_file.checksum, remote_path)
    [all...]

Completed in 615 milliseconds

1 2