Home
last modified time | relevance | path

Searched refs:remote_path (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/tools/telemetry/telemetry/page/
Dcloud_storage.py108 def Delete(bucket, remote_path): argument
109 url = 'gs://%s/%s' % (bucket, remote_path)
114 def Get(bucket, remote_path, local_path): argument
115 url = 'gs://%s/%s' % (bucket, remote_path)
120 def Insert(bucket, remote_path, local_path): argument
121 url = 'gs://%s/%s' % (bucket, remote_path)
/external/openssh/
Dsftp-client.c987 do_download(struct sftp_conn *conn, char *remote_path, char *local_path, in do_download() argument
1009 if (a == NULL && (a = do_stat(conn, remote_path, 0)) == NULL) in do_download()
1020 error("Cannot download non-regular file: %s", remote_path); in do_download()
1036 buffer_put_cstring(&msg, remote_path); in do_download()
1041 debug3("Sent message SSH2_FXP_OPEN I:%u P:%s", id, remote_path); in do_download()
1044 "remote open(\"%s\")", remote_path); in do_download()
1067 start_progress_meter(remote_path, size, &progress_counter); in do_download()
1190 remote_path, fx2txt(status)); in do_download()
1334 do_upload(struct sftp_conn *conn, char *local_path, char *remote_path, in do_upload() argument
1388 buffer_put_cstring(&msg, remote_path); in do_upload()
[all …]
Dsftp.c1691 complete_match(EditLine *el, struct sftp_conn *conn, char *remote_path, in complete_match() argument
1707 tmp = make_absolute(tmp, remote_path); in complete_match()
1739 tmp = path_strip(tmp2, remote_path); in complete_match()
1864 char *remote_path; in interactive_loop() local
1893 complete_ctx.remote_pathp = &remote_path; in interactive_loop()
1899 remote_path = do_realpath(conn, "."); in interactive_loop()
1900 if (remote_path == NULL) in interactive_loop()
1905 dir = make_absolute(dir, remote_path); in interactive_loop()
1911 &remote_path, 1) != 0) { in interactive_loop()
1913 xfree(remote_path); in interactive_loop()
[all …]
/external/chromium_org/chrome/browser/extensions/api/file_handlers/
Dapp_file_handler_util.cc124 void CheckRemoteWritableFile(const base::FilePath& remote_path,
215 const base::FilePath& remote_path, in CheckRemoteWritableFile() argument
227 base::Bind(&WritableFileChecker::Error, this, remote_path)); in CheckRemoteWritableFile()
/external/chromium_org/tools/telemetry/telemetry/unittest/
Dsystem_stub.py112 def Insert(self, bucket, remote_path, local_path): argument