vpath2           1045 lib/util.c     diff_two_paths (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2           1055 lib/util.c         my_second = resolve_symlinks (vpath2);
vpath2            204 lib/util.h     char *diff_two_paths (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
vpath2            266 lib/vfs/interface.c mc_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2            270 lib/vfs/interface.c     if (vpath1 != NULL && vpath2 != NULL)
vpath2            274 lib/vfs/interface.c         me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath2));
vpath2            277 lib/vfs/interface.c             result = me->symlink != NULL ? me->symlink (vpath1, vpath2) : -1;
vpath2            314 lib/vfs/interface.c     int mc_##name (const vfs_path_t *vpath1, const vfs_path_t *vpath2)                             \
vpath2            319 lib/vfs/interface.c         if (vpath1 == NULL || vpath2 == NULL)                                                      \
vpath2            323 lib/vfs/interface.c         me2 = VFS_CLASS (vfs_path_get_last_path_vfs (vpath2));                                     \
vpath2            331 lib/vfs/interface.c         result = me1->name != NULL ? me1->name (vpath1, vpath2) : -1;                              \
vpath2           1604 lib/vfs/path.c vfs_path_equal (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2           1609 lib/vfs/path.c     if (vpath1 == NULL || vpath2 == NULL)
vpath2           1613 lib/vfs/path.c     path2 = vfs_path_as_str (vpath2);
vpath2           1632 lib/vfs/path.c vfs_path_equal_len (const vfs_path_t *vpath1, const vfs_path_t *vpath2, size_t len)
vpath2           1637 lib/vfs/path.c     if (vpath1 == NULL || vpath2 == NULL)
vpath2           1641 lib/vfs/path.c     path2 = vfs_path_as_str (vpath2);
vpath2             97 lib/vfs/path.h gboolean vfs_path_equal (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
vpath2             98 lib/vfs/path.h gboolean vfs_path_equal_len (const vfs_path_t *vpath1, const vfs_path_t *vpath2, size_t len);
vpath2            184 lib/vfs/vfs.h      int (*symlink) (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
vpath2            185 lib/vfs/vfs.h      int (*link) (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
vpath2            187 lib/vfs/vfs.h      int (*rename) (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
vpath2            319 lib/vfs/vfs.h  int mc_link (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
vpath2            324 lib/vfs/vfs.h  int mc_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
vpath2            325 lib/vfs/vfs.h  int mc_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
vpath2            170 src/filemanager/cmd.c compare_files (const vfs_path_t *vpath1, const vfs_path_t *vpath2, off_t size)
vpath2            183 src/filemanager/cmd.c         file2 = open (vfs_path_as_str (vpath2), O_RDONLY);
vpath2           2268 src/vfs/ftpfs/ftpfs.c ftpfs_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2           2271 src/vfs/ftpfs/ftpfs.c     return ftpfs_send_command (vpath2, "RNTO /%s", OPT_FLUSH);
vpath2            257 src/vfs/local/local.c local_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2            262 src/vfs/local/local.c     path2 = vfs_path_get_last_path_str (vpath2);
vpath2            298 src/vfs/local/local.c local_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2            303 src/vfs/local/local.c     path2 = vfs_path_get_last_path_str (vpath2);
vpath2            332 src/vfs/local/local.c local_link (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2            337 src/vfs/local/local.c     path2 = vfs_path_get_last_path_str (vpath2);
vpath2            382 src/vfs/sftpfs/internal.c sftpfs_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2, GError **mcerror)
vpath2            393 src/vfs/sftpfs/internal.c     if (!sftpfs_op_init (&super, &path_element2, vpath2, mcerror))
vpath2            575 src/vfs/sftpfs/internal.c sftpfs_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2, GError **mcerror)
vpath2            586 src/vfs/sftpfs/internal.c     if (!sftpfs_op_init (&super, &path_element2, vpath2, mcerror))
vpath2             85 src/vfs/sftpfs/internal.h int sftpfs_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2, GError **mcerror);
vpath2             89 src/vfs/sftpfs/internal.h int sftpfs_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2, GError **mcerror);
vpath2            358 src/vfs/sftpfs/sftpfs.c sftpfs_cb_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2            363 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_symlink (vpath1, vpath2, &mcerror);
vpath2            398 src/vfs/sftpfs/sftpfs.c sftpfs_cb_link (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2            401 src/vfs/sftpfs/sftpfs.c     (void) vpath2;
vpath2            617 src/vfs/sftpfs/sftpfs.c sftpfs_cb_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2            622 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_rename (vpath1, vpath2, &mcerror);
vpath2           1225 src/vfs/shell/shell.c shell_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2           1237 src/vfs/shell/shell.c     crpath2 = vfs_s_get_path (vpath2, &super2, 0);
vpath2           1258 src/vfs/shell/shell.c shell_link (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2           1270 src/vfs/shell/shell.c     crpath2 = vfs_s_get_path (vpath2, &super2, 0);
vpath2           1291 src/vfs/shell/shell.c shell_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2)
vpath2           1300 src/vfs/shell/shell.c     crpath = vfs_s_get_path (vpath2, &super, 0);
vpath2           1307 src/vfs/shell/shell.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath2));
vpath2            130 tests/lib/vfs/path_cmp.c     vfs_path_t *vpath1, *vpath2;
vpath2            134 tests/lib/vfs/path_cmp.c     vpath2 = vfs_path_from_str (data->input_path2);
vpath2            137 tests/lib/vfs/path_cmp.c     actual_result = vfs_path_equal (vpath1, vpath2);
vpath2            143 tests/lib/vfs/path_cmp.c     vfs_path_free (vpath2, TRUE);
vpath2            219 tests/lib/vfs/path_cmp.c     vfs_path_t *vpath1, *vpath2;
vpath2            223 tests/lib/vfs/path_cmp.c     vpath2 = vfs_path_from_str (data->input_path2);
vpath2            226 tests/lib/vfs/path_cmp.c     actual_result = vfs_path_equal_len (vpath1, vpath2, data->input_length);
vpath2            232 tests/lib/vfs/path_cmp.c     vfs_path_free (vpath2, TRUE);
vpath2            345 tests/lib/vfs/path_manipulations.c     vfs_path_t *vpath1, *vpath2, *vpath3;
vpath2            348 tests/lib/vfs/path_manipulations.c     vpath2 = vfs_path_from_str (data->input_path2);
vpath2            351 tests/lib/vfs/path_manipulations.c     vpath3 = vfs_path_append_vpath_new (vpath1, vpath2, NULL);
vpath2            358 tests/lib/vfs/path_manipulations.c     vfs_path_free (vpath2, TRUE);