Home
last modified time | relevance | path

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

/freebsd-13.1/crypto/openssh/
H A Dsftp.c1948 tmp = make_absolute(tmp, remote_path); in complete_match()
2121 char *remote_path; in interactive_loop() local
2150 complete_ctx.remote_pathp = &remote_path; in interactive_loop()
2163 remote_path = do_realpath(conn, "."); in interactive_loop()
2164 if (remote_path == NULL) in interactive_loop()
2166 startdir = xstrdup(remote_path); in interactive_loop()
2170 dir = make_absolute(dir, remote_path); in interactive_loop()
2180 free(remote_path); in interactive_loop()
2191 &remote_path, startdir, 1, 0); in interactive_loop()
2194 free(remote_path); in interactive_loop()
[all …]
H A Dsftp-client.c1426 do_download(struct sftp_conn *conn, const char *remote_path, in do_download() argument
1445 if (a == NULL && (a = do_stat(conn, remote_path, 0)) == NULL) in do_download()
1456 error("Cannot download non-regular file: %s", remote_path); in do_download()
1468 if (send_open(conn, remote_path, "remote", SSH2_FXF_READ, NULL, in do_download()
1509 start_progress_meter(progress_meter_path(remote_path), in do_download()
1648 remote_path, fx2txt(status)); in do_download()
1824 const char *remote_path, int preserve_flag, int resume, int fsync_flag) in do_upload() argument
1869 if ((c = do_stat(conn, remote_path, 0)) == NULL) { in do_upload()
1888 if (send_open(conn, remote_path, "dest", SSH2_FXF_WRITE|SSH2_FXF_CREAT| in do_upload()
1987 remote_path, fx2txt(status)); in do_upload()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp379 std::string remote_path = remote_file.GetPath(); in DoExecute() local
380 target_sp->SetArg0(remote_path.c_str()); in DoExecute()