dst_vpath         118 src/filemanager/file.c     vfs_path_t *dst_vpath;
dst_vpath         316 src/filemanager/file.c     vfs_path_free (lp->dst_vpath, TRUE);
dst_vpath         373 src/filemanager/file.c                  const vfs_path_t * dst_vpath, gboolean * skip_all)
dst_vpath         404 src/filemanager/file.c                 dst_name_class = vfs_path_get_last_path_vfs (dst_vpath);
dst_vpath         405 src/filemanager/file.c                 p_class = vfs_path_get_last_path_vfs (lnk->dst_vpath);
dst_vpath         411 src/filemanager/file.c                     while (!(ok = (mc_stat (lnk->dst_vpath, &link_stat) == 0)) && !*skip_all)
dst_vpath         417 src/filemanager/file.c                                         vfs_path_as_str (lnk->dst_vpath));
dst_vpath         431 src/filemanager/file.c                     while (!(ok = (mc_link (lnk->dst_vpath, dst_vpath) == 0)) && !*skip_all)
dst_vpath         437 src/filemanager/file.c                                         vfs_path_as_str (dst_vpath));
dst_vpath         473 src/filemanager/file.c                             vfs_path_as_str (dst_vpath));
dst_vpath         494 src/filemanager/file.c         lnk->dst_vpath = vfs_path_clone (dst_vpath);
dst_vpath         512 src/filemanager/file.c make_symlink (file_op_context_t * ctx, const vfs_path_t * src_vpath, const vfs_path_t * dst_vpath)
dst_vpath         524 src/filemanager/file.c     dst_path = vfs_path_as_str (dst_vpath);
dst_vpath         526 src/filemanager/file.c     dst_is_symlink = (mc_lstat (dst_vpath, &dst_stat) == 0) && S_ISLNK (dst_stat.st_mode);
dst_vpath         547 src/filemanager/file.c     if (ctx->stable_symlinks && !(vfs_file_is_local (src_vpath) && vfs_file_is_local (dst_vpath)))
dst_vpath         598 src/filemanager/file.c     if (mc_symlink (link_target_vpath, dst_vpath) == 0)
dst_vpath         608 src/filemanager/file.c     if (dst_is_symlink && mc_unlink (dst_vpath) == 0
dst_vpath         609 src/filemanager/file.c         && mc_symlink (link_target_vpath, dst_vpath) == 0)
dst_vpath        1243 src/filemanager/file.c     vfs_path_t *src_vpath, *dst_vpath;
dst_vpath        1246 src/filemanager/file.c     dst_vpath = vfs_path_from_str (d);
dst_vpath        1249 src/filemanager/file.c     file_progress_show_target (ctx, dst_vpath);
dst_vpath        1276 src/filemanager/file.c     if (mc_lstat (dst_vpath, &dst_stat) == 0)
dst_vpath        1302 src/filemanager/file.c             return_status = make_symlink (ctx, src_vpath, dst_vpath);
dst_vpath        1310 src/filemanager/file.c                     mc_utime (dst_vpath, &times);
dst_vpath        1317 src/filemanager/file.c         if (mc_rename (src_vpath, dst_vpath) == 0)
dst_vpath        1393 src/filemanager/file.c     vfs_path_free (dst_vpath, TRUE);
dst_vpath        1627 src/filemanager/file.c     vfs_path_t *src_vpath, *dst_vpath;
dst_vpath        1630 src/filemanager/file.c     dst_vpath = vfs_path_from_str (d);
dst_vpath        1633 src/filemanager/file.c     file_progress_show_target (ctx, dst_vpath);
dst_vpath        1646 src/filemanager/file.c     dstat_ok = (mc_stat (dst_vpath, &dst_stat) == 0);
dst_vpath        1659 src/filemanager/file.c         tmp = dst_vpath;
dst_vpath        1660 src/filemanager/file.c         dst_vpath = vfs_path_append_new (dst_vpath, x_basename (s), (char *) NULL);
dst_vpath        1664 src/filemanager/file.c     d = vfs_path_as_str (dst_vpath);
dst_vpath        1668 src/filemanager/file.c     if (mc_stat (dst_vpath, &dst_stat) == 0)
dst_vpath        1707 src/filemanager/file.c     if (mc_rename (src_vpath, dst_vpath) == 0)
dst_vpath        1765 src/filemanager/file.c     vfs_path_free (dst_vpath, TRUE);
dst_vpath        2283 src/filemanager/file.c     vfs_path_t *src_vpath = NULL, *dst_vpath = NULL;
dst_vpath        2290 src/filemanager/file.c     dst_vpath = vfs_path_from_str (dst_path);
dst_vpath        2294 src/filemanager/file.c     file_progress_show_target (ctx, dst_vpath);
dst_vpath        2304 src/filemanager/file.c     while (mc_stat (dst_vpath, &dst_stat) == 0)
dst_vpath        2388 src/filemanager/file.c             switch (check_hardlinks (src_vpath, &src_stat, dst_vpath, &ctx->skip_all))
dst_vpath        2406 src/filemanager/file.c             return_status = make_symlink (ctx, src_vpath, dst_vpath);
dst_vpath        2409 src/filemanager/file.c                 mc_utime (dst_vpath, &times);
dst_vpath        2411 src/filemanager/file.c                 while (attrs_ok && mc_fsetflags (dst_vpath, attrs) != 0 && !ctx->skip_all)
dst_vpath        2444 src/filemanager/file.c             while (mc_mknod (dst_vpath, src_stat.st_mode & ctx->umask_kill, rdev) < 0
dst_vpath        2458 src/filemanager/file.c                    && mc_chown (dst_vpath, src_stat.st_uid, src_stat.st_gid) != 0 && !ctx->skip_all)
dst_vpath        2472 src/filemanager/file.c             while (ctx->preserve && mc_chmod (dst_vpath, src_stat.st_mode & ctx->umask_kill) != 0
dst_vpath        2487 src/filemanager/file.c             while (attrs_ok && mc_fsetflags (dst_vpath, attrs) != 0 && !ctx->skip_all)
dst_vpath        2513 src/filemanager/file.c             mc_utime (dst_vpath, &times);
dst_vpath        2569 src/filemanager/file.c     while ((dest_desc = mc_open (dst_vpath, open_flags, src_mode)) < 0)
dst_vpath        2647 src/filemanager/file.c             mc_unlink (dst_vpath);
dst_vpath        2848 src/filemanager/file.c         mc_unlink (dst_vpath);
dst_vpath        2853 src/filemanager/file.c         while (ctx->preserve_uidgid && mc_chown (dst_vpath, src_uid, src_gid) != 0
dst_vpath        2869 src/filemanager/file.c         while (ctx->preserve && mc_chmod (dst_vpath, (src_mode & ctx->umask_kill)) != 0
dst_vpath        2890 src/filemanager/file.c             mc_chmod (dst_vpath, (src_mode & ctx->umask_kill));
dst_vpath        2897 src/filemanager/file.c         mc_utime (dst_vpath, &times);
dst_vpath        2899 src/filemanager/file.c         while (attrs_ok && mc_fsetflags (dst_vpath, attrs) != 0 && !ctx->skip_all)
dst_vpath        2933 src/filemanager/file.c     vfs_path_free (dst_vpath, TRUE);
dst_vpath        2956 src/filemanager/file.c     vfs_path_t *src_vpath, *dst_vpath;
dst_vpath        2960 src/filemanager/file.c     dst_vpath = vfs_path_from_str (d);
dst_vpath        3022 src/filemanager/file.c         switch (check_hardlinks (src_vpath, &src_stat, dst_vpath, &ctx->skip_all))
dst_vpath        3068 src/filemanager/file.c     if (mc_stat (dst_vpath, &dst_stat) != 0)
dst_vpath        3071 src/filemanager/file.c         if (move_over && mc_rename (src_vpath, dst_vpath) == 0)
dst_vpath        3107 src/filemanager/file.c             tmp = dst_vpath;
dst_vpath        3108 src/filemanager/file.c             dst_vpath = vfs_path_append_new (dst_vpath, x_basename (s), (char *) NULL);
dst_vpath        3116 src/filemanager/file.c     d = vfs_path_as_str (dst_vpath);
dst_vpath        3120 src/filemanager/file.c         while (my_mkdir (dst_vpath, (src_stat.st_mode & ctx->umask_kill) | S_IRWXU) != 0)
dst_vpath        3136 src/filemanager/file.c         mc_stat (dst_vpath, &dst_stat);
dst_vpath        3137 src/filemanager/file.c         lp->vfs = vfs_path_get_last_path_vfs (dst_vpath);
dst_vpath        3145 src/filemanager/file.c         while (mc_chown (dst_vpath, src_stat.st_uid, src_stat.st_gid) != 0)
dst_vpath        3233 src/filemanager/file.c         mc_chmod (dst_vpath, src_stat.st_mode & ctx->umask_kill);
dst_vpath        3236 src/filemanager/file.c             mc_fsetflags (dst_vpath, attrs);
dst_vpath        3239 src/filemanager/file.c         mc_utime (dst_vpath, &times);
dst_vpath        3246 src/filemanager/file.c         mc_chmod (dst_vpath, src_stat.st_mode & ctx->umask_kill);
dst_vpath        3254 src/filemanager/file.c     vfs_path_free (dst_vpath, TRUE);