Lines Matching refs:abs_dst
1340 char *target = NULL, *filename = NULL, *abs_dst = NULL; in source_sftp() local
1368 abs_dst = sftp_path_append(target, filename); in source_sftp()
1370 abs_dst = target; in source_sftp()
1373 debug3_f("copying local %s to remote %s", src, abs_dst); in source_sftp()
1376 if (sftp_upload_dir(conn, src, abs_dst, pflag, in source_sftp()
1381 } else if (sftp_upload(conn, src, abs_dst, pflag, 0, 0, 1) != 0) { in source_sftp()
1386 free(abs_dst); in source_sftp()
1555 char *abs_dst = NULL; in sink_sftp() local
1626 abs_dst = sftp_path_append(dst, filename); in sink_sftp()
1628 abs_dst = xstrdup(dst); in sink_sftp()
1630 debug("Fetching %s to %s\n", g.gl_pathv[i], abs_dst); in sink_sftp()
1632 if (sftp_download_dir(conn, g.gl_pathv[i], abs_dst, in sink_sftp()
1636 if (sftp_download(conn, g.gl_pathv[i], abs_dst, NULL, in sink_sftp()
1640 free(abs_dst); in sink_sftp()
1641 abs_dst = NULL; in sink_sftp()
1993 char *target = NULL, *filename = NULL, *abs_dst = NULL; local
2047 abs_dst = sftp_path_append(target, filename);
2049 abs_dst = xstrdup(target);
2051 debug("Fetching %s to %s\n", g.gl_pathv[i], abs_dst);
2053 if (sftp_crossload_dir(from, to, g.gl_pathv[i], abs_dst,
2057 if (sftp_crossload(from, to, g.gl_pathv[i], abs_dst,
2061 free(abs_dst);
2062 abs_dst = NULL;
2069 free(abs_dst);