vpath2 1038 lib/util.c diff_two_paths (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 1048 lib/util.c my_second = resolve_symlinks (vpath2); vpath2 188 lib/util.h char *diff_two_paths (const vfs_path_t * vpath1, const vfs_path_t * vpath2); vpath2 270 lib/vfs/interface.c mc_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 274 lib/vfs/interface.c if (vpath1 != NULL && vpath2 != NULL) vpath2 278 lib/vfs/interface.c me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath2)); vpath2 281 lib/vfs/interface.c result = me->symlink != NULL ? me->symlink (vpath1, vpath2) : -1; vpath2 320 lib/vfs/interface.c int mc_##name (const vfs_path_t *vpath1, const vfs_path_t *vpath2) \ vpath2 325 lib/vfs/interface.c if (vpath1 == NULL || vpath2 == NULL) \ vpath2 329 lib/vfs/interface.c me2 = VFS_CLASS (vfs_path_get_last_path_vfs (vpath2)); \ vpath2 337 lib/vfs/interface.c result = me1->name != NULL ? me1->name (vpath1, vpath2) : -1; \ vpath2 1605 lib/vfs/path.c vfs_path_equal (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 1610 lib/vfs/path.c if (vpath1 == NULL || vpath2 == NULL) vpath2 1614 lib/vfs/path.c path2 = vfs_path_as_str (vpath2); vpath2 1633 lib/vfs/path.c vfs_path_equal_len (const vfs_path_t *vpath1, const vfs_path_t *vpath2, size_t len) vpath2 1638 lib/vfs/path.c if (vpath1 == NULL || vpath2 == NULL) vpath2 1642 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 185 lib/vfs/vfs.h int (*symlink) (const vfs_path_t * vpath1, const vfs_path_t * vpath2); vpath2 186 lib/vfs/vfs.h int (*link) (const vfs_path_t * vpath1, const vfs_path_t * vpath2); vpath2 188 lib/vfs/vfs.h int (*rename) (const vfs_path_t * vpath1, const vfs_path_t * vpath2); vpath2 323 lib/vfs/vfs.h int mc_link (const vfs_path_t * vpath1, const vfs_path_t * vpath2); vpath2 328 lib/vfs/vfs.h int mc_symlink (const vfs_path_t * vpath1, const vfs_path_t * vpath2); vpath2 329 lib/vfs/vfs.h int mc_rename (const vfs_path_t * vpath1, const vfs_path_t * vpath2); vpath2 169 src/filemanager/cmd.c compare_files (const vfs_path_t *vpath1, const vfs_path_t *vpath2, off_t size) vpath2 182 src/filemanager/cmd.c file2 = open (vfs_path_as_str (vpath2), O_RDONLY); vpath2 2270 src/vfs/ftpfs/ftpfs.c ftpfs_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 2273 src/vfs/ftpfs/ftpfs.c return ftpfs_send_command (vpath2, "RNTO /%s", OPT_FLUSH); vpath2 249 src/vfs/local/local.c local_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 254 src/vfs/local/local.c path2 = vfs_path_get_last_path_str (vpath2); vpath2 290 src/vfs/local/local.c local_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 295 src/vfs/local/local.c path2 = vfs_path_get_last_path_str (vpath2); vpath2 324 src/vfs/local/local.c local_link (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 329 src/vfs/local/local.c path2 = vfs_path_get_last_path_str (vpath2); vpath2 383 src/vfs/sftpfs/internal.c sftpfs_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2, GError **mcerror) vpath2 394 src/vfs/sftpfs/internal.c if (!sftpfs_op_init (&super, &path_element2, vpath2, mcerror)) vpath2 579 src/vfs/sftpfs/internal.c sftpfs_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2, GError **mcerror) vpath2 590 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 1243 src/vfs/shell/shell.c shell_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 1255 src/vfs/shell/shell.c crpath2 = vfs_s_get_path (vpath2, &super2, 0); vpath2 1277 src/vfs/shell/shell.c shell_link (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 1289 src/vfs/shell/shell.c crpath2 = vfs_s_get_path (vpath2, &super2, 0); vpath2 1311 src/vfs/shell/shell.c shell_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2) vpath2 1320 src/vfs/shell/shell.c crpath = vfs_s_get_path (vpath2, &super, 0); vpath2 1327 src/vfs/shell/shell.c me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath2)); vpath2 128 tests/lib/vfs/path_cmp.c vfs_path_t *vpath1, *vpath2; vpath2 132 tests/lib/vfs/path_cmp.c vpath2 = vfs_path_from_str (data->input_path2); vpath2 135 tests/lib/vfs/path_cmp.c actual_result = vfs_path_equal (vpath1, vpath2); vpath2 141 tests/lib/vfs/path_cmp.c vfs_path_free (vpath2, TRUE); vpath2 216 tests/lib/vfs/path_cmp.c vfs_path_t *vpath1, *vpath2; vpath2 220 tests/lib/vfs/path_cmp.c vpath2 = vfs_path_from_str (data->input_path2); vpath2 223 tests/lib/vfs/path_cmp.c actual_result = vfs_path_equal_len (vpath1, vpath2, data->input_length); vpath2 229 tests/lib/vfs/path_cmp.c vfs_path_free (vpath2, TRUE); vpath2 337 tests/lib/vfs/path_manipulations.c vfs_path_t *vpath1, *vpath2, *vpath3; vpath2 340 tests/lib/vfs/path_manipulations.c vpath2 = vfs_path_from_str (data->input_path2); vpath2 343 tests/lib/vfs/path_manipulations.c vpath3 = vfs_path_append_vpath_new (vpath1, vpath2, NULL); vpath2 350 tests/lib/vfs/path_manipulations.c vfs_path_free (vpath2, TRUE);