Lines Matching refs:sftp_session
559 sftp_error_to_CURLE(sftp_get_error(sshc->sftp_session)); \
951 sshc->sftp_session = sftp_new(sshc->ssh_session); in myssh_statemach_act()
952 if(!sshc->sftp_session) { in myssh_statemach_act()
959 rc = sftp_init(sshc->sftp_session); in myssh_statemach_act()
972 sshc->homedir = sftp_canonicalize_path(sshc->sftp_session, "."); in myssh_statemach_act()
1046 rc = sftp_setstat(sshc->sftp_session, sshc->quote_path2, in myssh_statemach_act()
1065 rc = sftp_symlink(sshc->sftp_session, sshc->quote_path2, in myssh_statemach_act()
1081 rc = sftp_mkdir(sshc->sftp_session, sshc->quote_path1, in myssh_statemach_act()
1096 rc = sftp_rename(sshc->sftp_session, sshc->quote_path1, in myssh_statemach_act()
1112 rc = sftp_rmdir(sshc->sftp_session, sshc->quote_path1); in myssh_statemach_act()
1126 rc = sftp_unlink(sshc->sftp_session, sshc->quote_path1); in myssh_statemach_act()
1143 statvfs = sftp_statvfs(sshc->sftp_session, sshc->quote_path1); in myssh_statemach_act()
1211 attrs = sftp_stat(sshc->sftp_session, protop->path); in myssh_statemach_act()
1240 attrs = sftp_stat(sshc->sftp_session, protop->path); in myssh_statemach_act()
1271 sftp_open(sshc->sftp_session, protop->path, in myssh_statemach_act()
1274 err = sftp_get_error(sshc->sftp_session); in myssh_statemach_act()
1400 rc = sftp_mkdir(sshc->sftp_session, protop->path, in myssh_statemach_act()
1410 err = sftp_get_error(sshc->sftp_session); in myssh_statemach_act()
1433 sshc->sftp_dir = sftp_opendir(sshc->sftp_session, in myssh_statemach_act()
1449 sshc->readdir_attrs = sftp_readdir(sshc->sftp_session, sshc->sftp_dir); in myssh_statemach_act()
1516 sshc->readdir_link_attrs = sftp_lstat(sshc->sftp_session, in myssh_statemach_act()
1526 sshc->readdir_tmp = sftp_readlink(sshc->sftp_session, in myssh_statemach_act()
1590 sshc->sftp_file = sftp_open(sshc->sftp_session, protop->path, in myssh_statemach_act()
1781 if(sshc->sftp_session) { in myssh_statemach_act()
1782 sftp_free(sshc->sftp_session); in myssh_statemach_act()
1783 sshc->sftp_session = NULL; in myssh_statemach_act()
2849 sshc->quote_attrs = sftp_stat(sshc->sftp_session, sshc->quote_path2); in sftp_quote_stat()
2854 sftp_get_error(sshc->sftp_session)); in sftp_quote_stat()