Home
last modified time | relevance | path

Searched refs:remotepath (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
Dserver.py270 def get_file(self, remotepath, localpath): argument
273 sftp_client.get(remotepath, localpath)
275 def put_file(self, localpath, remotepath): argument
278 sftp_client.put(localpath, remotepath)
280 def listdir(self, remotepath): argument
283 return sftp_client.listdir(remotepath)
/external/curl/docs/examples/
Dftpuploadresume.c83 int upload(CURL *curlhandle, const char * remotepath, const char * localpath, in upload() argument
99 curl_easy_setopt(curlhandle, CURLOPT_URL, remotepath); in upload()