Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/openssh/
H A Dsftp.c1941 tmp = make_absolute(tmp, remote_path); in complete_match()
2114 char *remote_path; in interactive_loop() local
2156 remote_path = do_realpath(conn, "."); in interactive_loop()
2157 if (remote_path == NULL) in interactive_loop()
2159 startdir = xstrdup(remote_path); in interactive_loop()
2163 dir = make_absolute(dir, remote_path); in interactive_loop()
2170 &remote_path, startdir, 1) != 0) { in interactive_loop()
2173 free(remote_path); in interactive_loop()
2184 &remote_path, startdir, 1); in interactive_loop()
2187 free(remote_path); in interactive_loop()
[all …]
H A Dsftp-client.c1162 do_download(struct sftp_conn *conn, const char *remote_path, in do_download() argument
1188 if (a == NULL && (a = do_stat(conn, remote_path, 0)) == NULL) in do_download()
1199 error("Cannot download non-regular file: %s", remote_path); in do_download()
1218 (r = sshbuf_put_cstring(msg, remote_path)) != 0 || in do_download()
1226 "remote open(\"%s\")", remote_path); in do_download()
1270 start_progress_meter(remote_path, size, &progress_counter); in do_download()
1412 remote_path, fx2txt(status)); in do_download()
1623 if ((c = do_stat(conn, remote_path, 0)) == NULL) { in do_upload()
1648 (r = sshbuf_put_cstring(msg, remote_path)) != 0 || in do_upload()
1659 "remote open(\"%s\")", remote_path); in do_upload()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp389 std::string remote_path = remote_file.GetPath(); in DoExecute() local
390 target_sp->SetArg0(remote_path.c_str()); in DoExecute()