vpath             128 lib/mcconfig/common.c         vfs_path_t *vpath;
vpath             130 lib/mcconfig/common.c         vpath = vfs_path_from_str (ini_path);
vpath             131 lib/mcconfig/common.c         if (mc_stat (vpath, &st) == 0 && st.st_size != 0)
vpath             141 lib/mcconfig/common.c         vfs_path_free (vpath, TRUE);
vpath             114 lib/util.c     resolve_symlinks (const vfs_path_t *vpath)
vpath             120 lib/util.c         if (vpath->relative)
vpath             123 lib/util.c         p = p2 = g_strdup (vfs_path_as_str (vpath));
vpath             140 lib/util.c             if (mc_lstat (vpath, &mybuf) < 0)
vpath             151 lib/util.c                 len = mc_readlink (vpath, buf2, MC_MAXPATHLEN - 1);
vpath             334 lib/util.c         vfs_path_t *vpath;
vpath             337 lib/util.c         vpath = vfs_path_from_str_flags (path, VPF_STRIP_PASSWORD);
vpath             338 lib/util.c         ret = str_trunc (vfs_path_as_str (vpath), trunc_len);
vpath             339 lib/util.c         vfs_path_free (vpath, TRUE);
vpath            1404 lib/util.c             vfs_path_t *vpath;
vpath            1406 lib/util.c             vpath = vfs_path_from_str (backup_path);
vpath            1407 lib/util.c             mc_unlink (vpath);
vpath            1408 lib/util.c             vfs_path_free (vpath, TRUE);
vpath             394 lib/vfs/direntry.c vfs_s_inode_from_path (const vfs_path_t *vpath, int flags)
vpath             401 lib/vfs/direntry.c     q = vfs_s_get_path (vpath, &super, 0);
vpath             405 lib/vfs/direntry.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             423 lib/vfs/direntry.c vfs_s_opendir (const vfs_path_t *vpath)
vpath             429 lib/vfs/direntry.c     dir = vfs_s_inode_from_path (vpath, FL_DIR | FL_FOLLOW);
vpath             433 lib/vfs/direntry.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             495 lib/vfs/direntry.c vfs_s_chdir (const vfs_path_t *vpath)
vpath             499 lib/vfs/direntry.c     data = vfs_s_opendir (vpath);
vpath             510 lib/vfs/direntry.c vfs_s_internal_stat (const vfs_path_t *vpath, struct stat *buf, int flag)
vpath             514 lib/vfs/direntry.c     ino = vfs_s_inode_from_path (vpath, flag);
vpath             524 lib/vfs/direntry.c vfs_s_readlink (const vfs_path_t *vpath, char *buf, size_t size)
vpath             530 lib/vfs/direntry.c     ino = vfs_s_inode_from_path (vpath, 0);
vpath             534 lib/vfs/direntry.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             752 lib/vfs/direntry.c vfs_s_getlocalcopy (const vfs_path_t *vpath)
vpath             757 lib/vfs/direntry.c     if (vpath == NULL)
vpath             760 lib/vfs/direntry.c     fh = vfs_s_open (vpath, O_RDONLY, 0);
vpath             766 lib/vfs/direntry.c         me = vfs_path_get_last_path_vfs (vpath);
vpath             783 lib/vfs/direntry.c vfs_s_ungetlocalcopy (const vfs_path_t *vpath, const vfs_path_t *local, gboolean has_changed)
vpath             785 lib/vfs/direntry.c     (void) vpath;
vpath             794 lib/vfs/direntry.c vfs_s_setctl (const vfs_path_t *vpath, int ctlop, void *arg)
vpath             798 lib/vfs/direntry.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             806 lib/vfs/direntry.c             ino = vfs_s_inode_from_path (vpath, 0);
vpath             833 lib/vfs/direntry.c vfs_s_getid (const vfs_path_t *vpath)
vpath             838 lib/vfs/direntry.c     p = vfs_s_get_path (vpath, &archive, FL_NO_OPEN);
vpath            1110 lib/vfs/direntry.c vfs_get_super_by_vpath (const vfs_path_t *vpath)
vpath            1119 lib/vfs/direntry.c     path_element = vfs_path_get_by_index (vpath, -1);
vpath            1122 lib/vfs/direntry.c     vpath_archive = vfs_path_clone (vpath);
vpath            1167 lib/vfs/direntry.c vfs_s_get_path (const vfs_path_t *vpath, struct vfs_s_super **archive, int flags)
vpath            1175 lib/vfs/direntry.c     path_element = vfs_path_get_by_index (vpath, -1);
vpath            1180 lib/vfs/direntry.c     super = vfs_get_super_by_vpath (vpath);
vpath            1199 lib/vfs/direntry.c         vpath_archive = vfs_path_clone (vpath);
vpath            1288 lib/vfs/direntry.c vfs_s_open (const vfs_path_t *vpath, int flags, mode_t mode)
vpath            1298 lib/vfs/direntry.c     q = vfs_s_get_path (vpath, &super, 0);
vpath            1302 lib/vfs/direntry.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            1399 lib/vfs/direntry.c vfs_s_stat (const vfs_path_t *vpath, struct stat *buf)
vpath            1401 lib/vfs/direntry.c     return vfs_s_internal_stat (vpath, buf, FL_FOLLOW);
vpath            1407 lib/vfs/direntry.c vfs_s_lstat (const vfs_path_t *vpath, struct stat *buf)
vpath            1409 lib/vfs/direntry.c     return vfs_s_internal_stat (vpath, buf, FL_NONE);
vpath            1566 lib/vfs/direntry.c vfs_getid (const vfs_path_t *vpath)
vpath            1570 lib/vfs/direntry.c     me = vfs_path_get_last_path_vfs (vpath);
vpath            1574 lib/vfs/direntry.c     return me->getid (vpath);
vpath             186 lib/vfs/gc.c   vfs_stamp_path (const vfs_path_t *vpath)
vpath             191 lib/vfs/gc.c       me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             192 lib/vfs/gc.c       id = vfs_getid (vpath);
vpath             207 lib/vfs/gc.c       const vfs_path_t *vpath;
vpath             218 lib/vfs/gc.c       vpath = vfs_get_raw_current_dir ();
vpath             219 lib/vfs/gc.c       me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             221 lib/vfs/gc.c       nvfsid = vfs_getid (vpath);
vpath             316 lib/vfs/gc.c   vfs_release_path (const vfs_path_t *vpath)
vpath             321 lib/vfs/gc.c       me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             322 lib/vfs/gc.c       id = vfs_getid (vpath);
vpath             191 lib/vfs/interface.c mc_open (const vfs_path_t *vpath, int flags, ...)
vpath             197 lib/vfs/interface.c     if (vpath == NULL)
vpath             213 lib/vfs/interface.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             219 lib/vfs/interface.c         info = me->open (vpath, flags, mode);
vpath             241 lib/vfs/interface.c     if (vpath == NULL) \
vpath             244 lib/vfs/interface.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath)); \
vpath             254 lib/vfs/interface.c MC_NAMEOP (chmod, (const vfs_path_t *vpath, mode_t mode), (vpath, mode))
vpath             255 lib/vfs/interface.c MC_NAMEOP (chown, (const vfs_path_t *vpath, uid_t owner, gid_t group), (vpath, owner, group))
vpath             256 lib/vfs/interface.c MC_NAMEOP (fgetflags, (const vfs_path_t *vpath, unsigned long *flags), (vpath, flags))
vpath             257 lib/vfs/interface.c MC_NAMEOP (fsetflags, (const vfs_path_t *vpath, unsigned long flags), (vpath, flags))
vpath             258 lib/vfs/interface.c MC_NAMEOP (utime, (const vfs_path_t *vpath, mc_timesbuf_t * times), (vpath, times))
vpath             259 lib/vfs/interface.c MC_NAMEOP (readlink, (const vfs_path_t *vpath, char *buf, size_t bufsiz), (vpath, buf, bufsiz))
vpath             260 lib/vfs/interface.c MC_NAMEOP (unlink, (const vfs_path_t *vpath), (vpath))
vpath             261 lib/vfs/interface.c MC_NAMEOP (mkdir, (const vfs_path_t *vpath, mode_t mode), (vpath, mode))
vpath             262 lib/vfs/interface.c MC_NAMEOP (rmdir, (const vfs_path_t *vpath), (vpath))
vpath             263 lib/vfs/interface.c MC_NAMEOP (mknod, (const vfs_path_t *vpath, mode_t mode, dev_t dev), (vpath, mode, dev))
vpath             364 lib/vfs/interface.c mc_setctl (const vfs_path_t *vpath, int ctlop, void *arg)
vpath             369 lib/vfs/interface.c     if (vpath == NULL)
vpath             372 lib/vfs/interface.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             374 lib/vfs/interface.c         result = me->setctl != NULL ? me->setctl (vpath, ctlop, arg) : 0;
vpath             411 lib/vfs/interface.c mc_opendir (const vfs_path_t *vpath)
vpath             417 lib/vfs/interface.c     if (vpath == NULL)
vpath             420 lib/vfs/interface.c     path_element = (vfs_path_element_t *) vfs_path_get_by_index (vpath, -1);
vpath             427 lib/vfs/interface.c     info = path_element->class->opendir ? path_element->class->opendir (vpath) : NULL;
vpath             535 lib/vfs/interface.c int mc_##name (const vfs_path_t *vpath, struct stat *buf) \
vpath             540 lib/vfs/interface.c     if (vpath == NULL) \
vpath             543 lib/vfs/interface.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath)); \
vpath             546 lib/vfs/interface.c         result = me->name ? me->name (vpath, buf) : -1; \
vpath             613 lib/vfs/interface.c mc_chdir (const vfs_path_t *vpath)
vpath             622 lib/vfs/interface.c     if (vpath == NULL)
vpath             628 lib/vfs/interface.c     if (vpath->relative)
vpath             629 lib/vfs/interface.c         cd_vpath = vfs_path_to_absolute (vpath);
vpath             631 lib/vfs/interface.c         cd_vpath = vfs_path_clone (vpath);
vpath             680 lib/vfs/interface.c             super = vfs_get_super_by_vpath (vpath);
vpath             344 lib/vfs/path.c     vfs_path_t *vpath;
vpath             349 lib/vfs/path.c     vpath = vfs_path_new (FALSE);
vpath             377 lib/vfs/path.c         g_array_prepend_val (vpath->path, element);
vpath             390 lib/vfs/path.c         g_array_prepend_val (vpath->path, element);
vpath             393 lib/vfs/path.c     return vpath;
vpath             409 lib/vfs/path.c     vfs_path_t *vpath;
vpath             421 lib/vfs/path.c     vpath = vfs_path_new (!path_is_absolute);
vpath             471 lib/vfs/path.c         g_array_prepend_val (vpath->path, element);
vpath             490 lib/vfs/path.c         g_array_prepend_val (vpath->path, element);
vpath             493 lib/vfs/path.c     return vpath;
vpath             602 lib/vfs/path.c vfs_path_to_str_flags (const vfs_path_t *vpath, int elements_count, vfs_path_flag_t flags)
vpath             610 lib/vfs/path.c     if (vpath == NULL)
vpath             613 lib/vfs/path.c     if (elements_count == 0 || elements_count > vfs_path_elements_count (vpath))
vpath             614 lib/vfs/path.c         elements_count = vfs_path_elements_count (vpath);
vpath             617 lib/vfs/path.c         elements_count = vfs_path_elements_count (vpath) + elements_count;
vpath             624 lib/vfs/path.c         gboolean is_relative = vpath->relative && (element_index == 0);
vpath             626 lib/vfs/path.c         element = vfs_path_get_by_index (vpath, element_index);
vpath             694 lib/vfs/path.c vfs_path_to_str_elements_count (const vfs_path_t *vpath, int elements_count)
vpath             696 lib/vfs/path.c     return vfs_path_to_str_flags (vpath, elements_count, VPF_NONE);
vpath             712 lib/vfs/path.c     vfs_path_t *vpath;
vpath             727 lib/vfs/path.c         vpath = vfs_path_from_str_deprecated_parser (path);
vpath             729 lib/vfs/path.c         vpath = vfs_path_from_str_uri_parser (path);
vpath             731 lib/vfs/path.c     vpath->str = vfs_path_to_str_flags (vpath, 0, flags);
vpath             734 lib/vfs/path.c     return vpath;
vpath             762 lib/vfs/path.c     vfs_path_t *vpath;
vpath             764 lib/vfs/path.c     vpath = g_new0 (vfs_path_t, 1);
vpath             765 lib/vfs/path.c     vpath->path = g_array_new (FALSE, TRUE, sizeof (vfs_path_element_t *));
vpath             766 lib/vfs/path.c     vpath->relative = relative;
vpath             768 lib/vfs/path.c     return vpath;
vpath             781 lib/vfs/path.c vfs_path_elements_count (const vfs_path_t *vpath)
vpath             783 lib/vfs/path.c     return (vpath != NULL && vpath->path != NULL) ? vpath->path->len : 0;
vpath             794 lib/vfs/path.c vfs_path_add_element (vfs_path_t *vpath, const vfs_path_element_t *path_element)
vpath             796 lib/vfs/path.c     g_array_append_val (vpath->path, path_element);
vpath             797 lib/vfs/path.c     g_free (vpath->str);
vpath             798 lib/vfs/path.c     vpath->str = vfs_path_to_str_flags (vpath, 0, VPF_NONE);
vpath             815 lib/vfs/path.c vfs_path_get_by_index (const vfs_path_t *vpath, int element_index)
vpath             819 lib/vfs/path.c     if (vpath == NULL)
vpath             825 lib/vfs/path.c     n = vfs_path_elements_count (vpath);
vpath             836 lib/vfs/path.c     return g_array_index (vpath->path, vfs_path_element_t *, element_index);
vpath             913 lib/vfs/path.c vfs_path_clone (const vfs_path_t *vpath)
vpath             918 lib/vfs/path.c     if (vpath == NULL)
vpath             921 lib/vfs/path.c     new_vpath = vfs_path_new (vpath->relative);
vpath             923 lib/vfs/path.c     for (vpath_element_index = 0; vpath_element_index < vfs_path_elements_count (vpath);
vpath             928 lib/vfs/path.c         path_element = vfs_path_element_clone (vfs_path_get_by_index (vpath, vpath_element_index));
vpath             931 lib/vfs/path.c     new_vpath->str = g_strdup (vpath->str);
vpath             947 lib/vfs/path.c vfs_path_free (vfs_path_t *vpath, gboolean free_str)
vpath             952 lib/vfs/path.c     if (vpath == NULL)
vpath             955 lib/vfs/path.c     for (vpath_element_index = 0; vpath_element_index < vfs_path_elements_count (vpath);
vpath             960 lib/vfs/path.c         path_element = (vfs_path_element_t *) vfs_path_get_by_index (vpath, vpath_element_index);
vpath             964 lib/vfs/path.c     g_array_free (vpath->path, TRUE);
vpath             967 lib/vfs/path.c         ret = vpath->str;
vpath             970 lib/vfs/path.c         g_free (vpath->str);
vpath             974 lib/vfs/path.c     g_free (vpath);
vpath             989 lib/vfs/path.c vfs_path_remove_element_by_index (vfs_path_t *vpath, int element_index)
vpath             993 lib/vfs/path.c     if ((vpath == NULL) || (vfs_path_elements_count (vpath) == 1))
vpath             997 lib/vfs/path.c         element_index = vfs_path_elements_count (vpath) + element_index;
vpath             999 lib/vfs/path.c     element = (vfs_path_element_t *) vfs_path_get_by_index (vpath, element_index);
vpath            1000 lib/vfs/path.c     vpath->path = g_array_remove_index (vpath->path, element_index);
vpath            1002 lib/vfs/path.c     g_free (vpath->str);
vpath            1003 lib/vfs/path.c     vpath->str = vfs_path_to_str_flags (vpath, 0, VPF_NONE);
vpath            1095 lib/vfs/path.c vfs_path_change_encoding (vfs_path_t *vpath, const char *encoding)
vpath            1099 lib/vfs/path.c     path_element = (vfs_path_element_t *) vfs_path_get_by_index (vpath, -1);
vpath            1102 lib/vfs/path.c         return vpath;
vpath            1112 lib/vfs/path.c     g_free (vpath->str);
vpath            1113 lib/vfs/path.c     vpath->str = vfs_path_to_str_flags (vpath, 0, VPF_NONE);
vpath            1114 lib/vfs/path.c     return vpath;
vpath            1131 lib/vfs/path.c vfs_path_serialize (const vfs_path_t *vpath, GError **mcerror)
vpath            1139 lib/vfs/path.c     if ((vpath == NULL) || (vfs_path_elements_count (vpath) == 0))
vpath            1147 lib/vfs/path.c     for (element_index = 0; element_index < vfs_path_elements_count (vpath); element_index++)
vpath            1153 lib/vfs/path.c         element = vfs_path_get_by_index (vpath, element_index);
vpath            1190 lib/vfs/path.c     vfs_path_t *vpath;
vpath            1198 lib/vfs/path.c     vpath = vfs_path_new (FALSE);
vpath            1215 lib/vfs/path.c             vfs_path_free (vpath, TRUE);
vpath            1240 lib/vfs/path.c         vpath->path = g_array_append_val (vpath->path, element);
vpath            1244 lib/vfs/path.c     if (vfs_path_elements_count (vpath) == 0)
vpath            1246 lib/vfs/path.c         vfs_path_free (vpath, TRUE);
vpath            1250 lib/vfs/path.c     vpath->str = vfs_path_to_str_flags (vpath, 0, VPF_NONE);
vpath            1252 lib/vfs/path.c     return vpath;
vpath            1270 lib/vfs/path.c     vfs_path_t *vpath;
vpath            1278 lib/vfs/path.c     vpath = vfs_path_from_str (str_path);
vpath            1280 lib/vfs/path.c     return vpath;
vpath            1295 lib/vfs/path.c vfs_path_append_new (const vfs_path_t *vpath, const char *first_element, ...)
vpath            1302 lib/vfs/path.c     if (vpath == NULL || first_element == NULL)
vpath            1309 lib/vfs/path.c     result_str = vfs_path_as_str (vpath);
vpath            1373 lib/vfs/path.c vfs_path_tokens_count (const vfs_path_t *vpath)
vpath            1378 lib/vfs/path.c     if (vpath == NULL)
vpath            1381 lib/vfs/path.c     for (element_index = 0; element_index < vfs_path_elements_count (vpath); element_index++)
vpath            1386 lib/vfs/path.c         element = vfs_path_get_by_index (vpath, element_index);
vpath            1417 lib/vfs/path.c vfs_path_tokens_get (const vfs_path_t *vpath, ssize_t start_position, ssize_t length)
vpath            1421 lib/vfs/path.c     size_t tokens_count = vfs_path_tokens_count (vpath);
vpath            1423 lib/vfs/path.c     if (vpath == NULL)
vpath            1447 lib/vfs/path.c     for (element_index = 0; element_index < vfs_path_elements_count (vpath); element_index++)
vpath            1453 lib/vfs/path.c         element = vfs_path_get_by_index (vpath, element_index);
vpath            1499 lib/vfs/path.c vfs_path_vtokens_get (const vfs_path_t *vpath, ssize_t start_position, ssize_t length)
vpath            1504 lib/vfs/path.c     str_tokens = vfs_path_tokens_get (vpath, start_position, length);
vpath            1659 lib/vfs/path.c vfs_path_len (const vfs_path_t *vpath)
vpath            1661 lib/vfs/path.c     if (vpath == NULL)
vpath            1664 lib/vfs/path.c     return strlen (vpath->str);
vpath            1677 lib/vfs/path.c vfs_path_to_absolute (const vfs_path_t *vpath)
vpath            1682 lib/vfs/path.c     if (!vpath->relative)
vpath            1683 lib/vfs/path.c         return vfs_path_clone (vpath);
vpath            1685 lib/vfs/path.c     path_str = vfs_path_as_str (vpath);
vpath              61 lib/vfs/path.h vfs_path_t *vfs_path_clone (const vfs_path_t * vpath);
vpath              62 lib/vfs/path.h void vfs_path_remove_element_by_index (vfs_path_t * vpath, int element_index);
vpath              67 lib/vfs/path.h char *vfs_path_to_str_flags (const vfs_path_t * vpath, int elements_count, vfs_path_flag_t flags);
vpath              71 lib/vfs/path.h vfs_path_t *vfs_path_append_new (const vfs_path_t * vpath, const char *first_element, ...);
vpath              73 lib/vfs/path.h size_t vfs_path_tokens_count (const vfs_path_t * vpath);
vpath              74 lib/vfs/path.h char *vfs_path_tokens_get (const vfs_path_t * vpath, ssize_t start_position, ssize_t length);
vpath              75 lib/vfs/path.h vfs_path_t *vfs_path_vtokens_get (const vfs_path_t * vpath, ssize_t start_position, ssize_t length);
vpath              77 lib/vfs/path.h void vfs_path_add_element (vfs_path_t * vpath, const vfs_path_element_t * path_element);
vpath              87 lib/vfs/path.h vfs_path_t *vfs_path_change_encoding (vfs_path_t * vpath, const char *encoding);
vpath              90 lib/vfs/path.h char *vfs_path_serialize (const vfs_path_t * vpath, GError ** error);
vpath              96 lib/vfs/path.h size_t vfs_path_len (const vfs_path_t * vpath);
vpath              99 lib/vfs/path.h vfs_path_t *vfs_path_to_absolute (const vfs_path_t * vpath);
vpath             112 lib/vfs/path.h vfs_path_get_last_path_str (const vfs_path_t *vpath)
vpath             116 lib/vfs/path.h     if (vpath == NULL)
vpath             118 lib/vfs/path.h     element = vfs_path_get_by_index (vpath, -1);
vpath             125 lib/vfs/path.h vfs_path_get_last_path_vfs (const vfs_path_t *vpath)
vpath             129 lib/vfs/path.h     if (vpath == NULL)
vpath             131 lib/vfs/path.h     element = vfs_path_get_by_index (vpath, -1);
vpath             145 lib/vfs/path.h vfs_path_as_str (const vfs_path_t *vpath)
vpath             147 lib/vfs/path.h     return (vpath == NULL ? NULL : vpath->str);
vpath             213 lib/vfs/vfs.c  vfs_test_current_dir (const vfs_path_t *vpath)
vpath             217 lib/vfs/vfs.c      return (mc_global.vfs.cd_symlinks && mc_stat (vpath, &my_stat) == 0
vpath             429 lib/vfs/vfs.c  vfs_set_raw_current_dir (const vfs_path_t *vpath)
vpath             432 lib/vfs/vfs.c      current_path = (vfs_path_t *) vpath;
vpath             448 lib/vfs/vfs.c  vfs_file_class_flags (const vfs_path_t *vpath)
vpath             452 lib/vfs/vfs.c      path_element = vfs_path_get_by_index (vpath, -1);
vpath             606 lib/vfs/vfs.c  vfs_file_is_local (const vfs_path_t *vpath)
vpath             608 lib/vfs/vfs.c      return (vfs_file_class_flags (vpath) & VFSF_LOCAL) != 0;
vpath             163 lib/vfs/vfs.h      void *(*open) (const vfs_path_t * vpath, int flags, mode_t mode);
vpath             168 lib/vfs/vfs.h      void *(*opendir) (const vfs_path_t * vpath);
vpath             172 lib/vfs/vfs.h      int (*stat) (const vfs_path_t * vpath, struct stat * buf);
vpath             173 lib/vfs/vfs.h      int (*lstat) (const vfs_path_t * vpath, struct stat * buf);
vpath             176 lib/vfs/vfs.h      int (*chmod) (const vfs_path_t * vpath, mode_t mode);
vpath             177 lib/vfs/vfs.h      int (*chown) (const vfs_path_t * vpath, uid_t owner, gid_t group);
vpath             179 lib/vfs/vfs.h      int (*fgetflags) (const vfs_path_t * vpath, unsigned long *flags);
vpath             180 lib/vfs/vfs.h      int (*fsetflags) (const vfs_path_t * vpath, unsigned long flags);
vpath             182 lib/vfs/vfs.h      int (*utime) (const vfs_path_t * vpath, mc_timesbuf_t * times);
vpath             184 lib/vfs/vfs.h      int (*readlink) (const vfs_path_t * vpath, char *buf, size_t size);
vpath             187 lib/vfs/vfs.h      int (*unlink) (const vfs_path_t * vpath);
vpath             189 lib/vfs/vfs.h      int (*chdir) (const vfs_path_t * vpath);
vpath             192 lib/vfs/vfs.h      int (*mknod) (const vfs_path_t * vpath, mode_t mode, dev_t dev);
vpath             194 lib/vfs/vfs.h      vfsid (*getid) (const vfs_path_t * vpath);
vpath             199 lib/vfs/vfs.h      vfs_path_t *(*getlocalcopy) (const vfs_path_t * vpath);
vpath             200 lib/vfs/vfs.h      int (*ungetlocalcopy) (const vfs_path_t * vpath, const vfs_path_t * local_vpath,
vpath             203 lib/vfs/vfs.h      int (*mkdir) (const vfs_path_t * vpath, mode_t mode);
vpath             204 lib/vfs/vfs.h      int (*rmdir) (const vfs_path_t * vpath);
vpath             207 lib/vfs/vfs.h      int (*setctl) (const vfs_path_t * vpath, int ctlop, void *arg);
vpath             240 lib/vfs/vfs.h  void *vfs_s_open (const vfs_path_t * vpath, int flags, mode_t mode);
vpath             241 lib/vfs/vfs.h  int vfs_s_stat (const vfs_path_t * vpath, struct stat *buf);
vpath             242 lib/vfs/vfs.h  int vfs_s_lstat (const vfs_path_t * vpath, struct stat *buf);
vpath             247 lib/vfs/vfs.h  vfsid vfs_getid (const vfs_path_t * vpath);
vpath             264 lib/vfs/vfs.h  void vfs_set_raw_current_dir (const vfs_path_t * vpath);
vpath             267 lib/vfs/vfs.h  MC_MOCKABLE gboolean vfs_file_is_local (const vfs_path_t * vpath);
vpath             271 lib/vfs/vfs.h  vfs_flags_t vfs_file_class_flags (const vfs_path_t * vpath);
vpath             282 lib/vfs/vfs.h  void vfs_release_path (const vfs_path_t * vpath);
vpath             314 lib/vfs/vfs.h  int mc_utime (const vfs_path_t * vpath, mc_timesbuf_t * times);
vpath             315 lib/vfs/vfs.h  int mc_readlink (const vfs_path_t * vpath, char *buf, size_t bufsiz);
vpath             318 lib/vfs/vfs.h  DIR *mc_opendir (const vfs_path_t * vpath);
vpath             321 lib/vfs/vfs.h  MC_MOCKABLE int mc_stat (const vfs_path_t * vpath, struct stat *buf);
vpath             322 lib/vfs/vfs.h  int mc_mknod (const vfs_path_t * vpath, mode_t mode, dev_t dev);
vpath             324 lib/vfs/vfs.h  int mc_mkdir (const vfs_path_t * vpath, mode_t mode);
vpath             325 lib/vfs/vfs.h  int mc_rmdir (const vfs_path_t * vpath);
vpath             327 lib/vfs/vfs.h  MC_MOCKABLE int mc_lstat (const vfs_path_t * vpath, struct stat *buf);
vpath             330 lib/vfs/vfs.h  int mc_chmod (const vfs_path_t * vpath, mode_t mode);
vpath             331 lib/vfs/vfs.h  int mc_chown (const vfs_path_t * vpath, uid_t owner, gid_t group);
vpath             332 lib/vfs/vfs.h  int mc_fgetflags (const vfs_path_t * vpath, unsigned long *flags);
vpath             333 lib/vfs/vfs.h  int mc_fsetflags (const vfs_path_t * vpath, unsigned long flags);
vpath             334 lib/vfs/vfs.h  int mc_chdir (const vfs_path_t * vpath);
vpath             335 lib/vfs/vfs.h  int mc_unlink (const vfs_path_t * vpath);
vpath             337 lib/vfs/vfs.h  int mc_setctl (const vfs_path_t * vpath, int ctlop, void *arg);
vpath             338 lib/vfs/vfs.h  int mc_open (const vfs_path_t * vpath, int flags, ...);
vpath             128 lib/vfs/xdirentry.h     void *(*archive_check) (const vfs_path_t * vpath);  /* optional */
vpath             130 lib/vfs/xdirentry.h                          const vfs_path_t * vpath, void *cookie);
vpath             133 lib/vfs/xdirentry.h                          const vfs_path_t * vpath, const vfs_path_element_t * vpath_element);
vpath             180 lib/vfs/xdirentry.h const char *vfs_s_get_path (const vfs_path_t * vpath, struct vfs_s_super **archive, int flags);
vpath             181 lib/vfs/xdirentry.h struct vfs_s_super *vfs_get_super_by_vpath (const vfs_path_t * vpath);
vpath             752 src/args.c             vfs_path_t *vpath;
vpath             754 src/args.c             vpath = vfs_path_from_str ("ftp://");
vpath             755 src/args.c             mc_setctl (vpath, VFS_SETCTL_LOGFILE, (void *) mc_args__netfs_logfile);
vpath             756 src/args.c             vfs_path_free (vpath, TRUE);
vpath            2732 src/diffviewer/ydiff.c     vfs_path_t *vpath;
vpath            2744 src/diffviewer/ydiff.c     vpath = vfs_path_from_str (dview->label[ord]);
vpath            2745 src/diffviewer/ydiff.c     path = vfs_path_to_str_flags (vpath, 0, VPF_STRIP_HOME | VPF_STRIP_PASSWORD);
vpath            2746 src/diffviewer/ydiff.c     vfs_path_free (vpath, TRUE);
vpath            4228 src/editor/edit.c edit_arg_init (edit_arg_t *arg, vfs_path_t *vpath, long line)
vpath            4230 src/editor/edit.c     arg->file_vpath = (vfs_path_t *) vpath;
vpath            4244 src/editor/edit.c edit_arg_assign (edit_arg_t *arg, vfs_path_t *vpath, long line)
vpath            4247 src/editor/edit.c     edit_arg_init (arg, vpath, line);
vpath              86 src/editor/edit.h void edit_arg_init (edit_arg_t * arg, vfs_path_t * vpath, long line);
vpath              87 src/editor/edit.h void edit_arg_assign (edit_arg_t * arg, vfs_path_t * vpath, long line);
vpath            1529 src/editor/editcmd.c     vfs_path_t *vpath;
vpath            1531 src/editor/editcmd.c     vpath = vfs_path_from_str (filename);
vpath            1532 src/editor/editcmd.c     file = mc_open (vpath, O_CREAT | O_WRONLY | O_TRUNC,
vpath            1534 src/editor/editcmd.c     vfs_path_free (vpath, TRUE);
vpath             382 src/editor/etags.c             vfs_path_t *vpath;
vpath             387 src/editor/etags.c                 vpath = vfs_path_append_vpath_new (edit->dir_vpath, edit->filename_vpath, NULL);
vpath             389 src/editor/etags.c                 vpath = vfs_path_clone (edit->filename_vpath);
vpath             391 src/editor/etags.c             edit_arg_assign (&edit_history_moveto[edit_stack_iterator], vpath,
vpath             934 src/filemanager/achown.c apply_advanced_chowns (WPanel *panel, vfs_path_t *vpath, struct stat *sf)
vpath             940 src/filemanager/achown.c     if (!do_advanced_chown (panel, vpath, get_mode (),
vpath             950 src/filemanager/achown.c         vpath = vfs_path_from_str (fname->str);
vpath             951 src/filemanager/achown.c         ok = (mc_stat (vpath, sf) == 0);
vpath             966 src/filemanager/achown.c             ok = do_advanced_chown (panel, vpath, get_mode (),
vpath             971 src/filemanager/achown.c         vfs_path_free (vpath, TRUE);
vpath             998 src/filemanager/achown.c         vfs_path_t *vpath;
vpath            1013 src/filemanager/achown.c         vpath = vfs_path_from_str (fname->str);
vpath            1015 src/filemanager/achown.c         if (mc_stat (vpath, &sf_stat) != 0)
vpath            1017 src/filemanager/achown.c             vfs_path_free (vpath, TRUE);
vpath            1047 src/filemanager/achown.c                     if (mc_chmod (vpath, get_mode ()) == -1)
vpath            1051 src/filemanager/achown.c                     else if (mc_chown (vpath, uid, gid) == -1)
vpath            1057 src/filemanager/achown.c                 else if (!try_advanced_chown (vpath, get_mode (), uid, gid))
vpath            1069 src/filemanager/achown.c             apply_advanced_chowns (panel, vpath, &sf_stat);
vpath            1085 src/filemanager/achown.c         vfs_path_free (vpath, TRUE);
vpath            1154 src/filemanager/chattr.c chattr_apply_mask (WPanel *panel, vfs_path_t *vpath, unsigned long m)
vpath            1158 src/filemanager/chattr.c     if (!do_chattr (panel, vpath, m))
vpath            1166 src/filemanager/chattr.c         vpath = vfs_path_from_str (fname->str);
vpath            1167 src/filemanager/chattr.c         ok = (mc_fgetflags (vpath, &m) == 0);
vpath            1181 src/filemanager/chattr.c             ok = do_chattr (panel, vpath, m);
vpath            1182 src/filemanager/chattr.c             vfs_path_free (vpath, TRUE);
vpath            1205 src/filemanager/chattr.c         vfs_path_t *vpath;
vpath            1220 src/filemanager/chattr.c         vpath = vfs_path_from_str (fname->str);
vpath            1222 src/filemanager/chattr.c         if (mc_fgetflags (vpath, &flags) != 0)
vpath            1226 src/filemanager/chattr.c             vfs_path_free (vpath, TRUE);
vpath            1248 src/filemanager/chattr.c                     if (mc_fsetflags (vpath, flags) == -1 && !ignore_all)
vpath            1253 src/filemanager/chattr.c                 else if (!try_chattr (vpath, flags))
vpath            1278 src/filemanager/chattr.c             chattr_apply_mask (panel, vpath, flags);
vpath            1291 src/filemanager/chattr.c             chattr_apply_mask (panel, vpath, flags);
vpath            1304 src/filemanager/chattr.c             chattr_apply_mask (panel, vpath, flags);
vpath            1319 src/filemanager/chattr.c         vfs_path_free (vpath, TRUE);
vpath             477 src/filemanager/chmod.c apply_mask (WPanel *panel, vfs_path_t *vpath, struct stat *sf)
vpath             481 src/filemanager/chmod.c     if (!do_chmod (panel, vpath, sf))
vpath             489 src/filemanager/chmod.c         vpath = vfs_path_from_str (fname->str);
vpath             490 src/filemanager/chmod.c         ok = (mc_stat (vpath, sf) == 0);
vpath             505 src/filemanager/chmod.c             ok = do_chmod (panel, vpath, sf);
vpath             508 src/filemanager/chmod.c         vfs_path_free (vpath, TRUE);
vpath             530 src/filemanager/chmod.c         vfs_path_t *vpath;
vpath             545 src/filemanager/chmod.c         vpath = vfs_path_from_str (fname->str);
vpath             547 src/filemanager/chmod.c         if (mc_stat (vpath, &sf_stat) != 0)
vpath             549 src/filemanager/chmod.c             vfs_path_free (vpath, TRUE);
vpath             570 src/filemanager/chmod.c                     if (mc_chmod (vpath, ch_mode) == -1 && !ignore_all)
vpath             575 src/filemanager/chmod.c                 else if (!try_chmod (vpath, ch_mode))
vpath             600 src/filemanager/chmod.c             apply_mask (panel, vpath, &sf_stat);
vpath             613 src/filemanager/chmod.c             apply_mask (panel, vpath, &sf_stat);
vpath             626 src/filemanager/chmod.c             apply_mask (panel, vpath, &sf_stat);
vpath             641 src/filemanager/chmod.c         vfs_path_free (vpath, TRUE);
vpath             346 src/filemanager/chown.c apply_chowns (WPanel *panel, vfs_path_t *vpath, uid_t u, gid_t g)
vpath             350 src/filemanager/chown.c     if (!do_chown (panel, vpath, u, g))
vpath             359 src/filemanager/chown.c         vpath = vfs_path_from_str (fname->str);
vpath             360 src/filemanager/chown.c         ok = (mc_stat (vpath, &sf) == 0);
vpath             372 src/filemanager/chown.c             ok = do_chown (panel, vpath, u, g);
vpath             374 src/filemanager/chown.c         vfs_path_free (vpath, TRUE);
vpath             396 src/filemanager/chown.c         vfs_path_t *vpath;
vpath             414 src/filemanager/chown.c         vpath = vfs_path_from_str (fname->str);
vpath             416 src/filemanager/chown.c         if (mc_stat (vpath, &sf_stat) != 0)
vpath             418 src/filemanager/chown.c             vfs_path_free (vpath, TRUE);
vpath             463 src/filemanager/chown.c                         if (mc_chown (vpath, new_user, new_group) == -1)
vpath             468 src/filemanager/chown.c                     else if (!try_chown (vpath, new_user, new_group))
vpath             477 src/filemanager/chown.c                     apply_chowns (panel, vpath, new_user, new_group);
vpath             495 src/filemanager/chown.c                     apply_chowns (panel, vpath, new_user, new_group);
vpath             512 src/filemanager/chown.c                     apply_chowns (panel, vpath, new_user, new_group);
vpath             529 src/filemanager/chown.c         vfs_path_free (vpath, TRUE);
vpath             583 src/filemanager/cmd.c     vfs_path_t *vpath;
vpath             595 src/filemanager/cmd.c     vpath = vfs_path_from_str (filename);
vpath             597 src/filemanager/cmd.c     view_file (vpath, FALSE, use_internal_view);
vpath             598 src/filemanager/cmd.c     vfs_path_free (vpath, TRUE);
vpath             978 src/filemanager/cmd.c         vfs_path_t *vpath;
vpath             980 src/filemanager/cmd.c         vpath = vfs_path_from_str (target);
vpath             981 src/filemanager/cmd.c         tree_chdir (the_tree, vpath);
vpath             982 src/filemanager/cmd.c         vfs_path_free (vpath, TRUE);
vpath            1350 src/filemanager/cmd.c     vfs_path_t *vpath;
vpath            1353 src/filemanager/cmd.c     vpath = vfs_path_from_str_flags (mc_config_get_path (), VPF_STRIP_HOME);
vpath            1354 src/filemanager/cmd.c     path = vfs_path_as_str (vpath);
vpath            1361 src/filemanager/cmd.c     vfs_path_free (vpath, TRUE);
vpath             155 src/filemanager/dir.c     vfs_path_t *vpath;
vpath             165 src/filemanager/dir.c     vpath = vfs_path_from_str (dp->d_name);
vpath             166 src/filemanager/dir.c     if (mc_lstat (vpath, buf1) == -1)
vpath             180 src/filemanager/dir.c     *link_to_dir = file_is_symlink_to_dir (vpath, buf1, stale_link);
vpath             182 src/filemanager/dir.c     vfs_path_free (vpath, TRUE);
vpath             199 src/filemanager/dir.c dir_get_dotdot_stat (const vfs_path_t *vpath, struct stat *st)
vpath             203 src/filemanager/dir.c     if ((vpath != NULL) && (st != NULL))
vpath             207 src/filemanager/dir.c         path = vfs_path_get_by_index (vpath, 0)->path;
vpath             212 src/filemanager/dir.c             tmp_vpath = vfs_path_append_new (vpath, "..", (char *) NULL);
vpath             598 src/filemanager/dir.c     vfs_path_t *vpath;
vpath             603 src/filemanager/dir.c     vpath = vfs_path_from_str (path);
vpath             604 src/filemanager/dir.c     if (mc_lstat (vpath, buf1) == -1)
vpath             606 src/filemanager/dir.c         vfs_path_free (vpath, TRUE);
vpath             620 src/filemanager/dir.c         if (mc_stat (vpath, &buf2) == 0)
vpath             626 src/filemanager/dir.c     vfs_path_free (vpath, TRUE);
vpath             634 src/filemanager/dir.c dir_list_load (dir_list *list, const vfs_path_t *vpath, GCompareFunc sort,
vpath             649 src/filemanager/dir.c     if (dir_get_dotdot_stat (vpath, &st))
vpath             653 src/filemanager/dir.c         list->callback (DIR_OPEN, (void *) vpath);
vpath             654 src/filemanager/dir.c     dirp = mc_opendir (vpath);
vpath             658 src/filemanager/dir.c     tree_store_start_check (vpath);
vpath             660 src/filemanager/dir.c     vpath_str = vfs_path_as_str (vpath);
vpath             707 src/filemanager/dir.c dir_list_reload (dir_list *list, const vfs_path_t *vpath, GCompareFunc sort,
vpath             720 src/filemanager/dir.c         list->callback (DIR_OPEN, (void *) vpath);
vpath             721 src/filemanager/dir.c     dirp = mc_opendir (vpath);
vpath             729 src/filemanager/dir.c     tree_store_start_check (vpath);
vpath             759 src/filemanager/dir.c     tmp_path = vfs_path_get_by_index (vpath, 0)->path;
vpath             760 src/filemanager/dir.c     if (vfs_path_elements_count (vpath) == 1 && IS_PATH_SEP (tmp_path[0]) && tmp_path[1] == '\0')
vpath             775 src/filemanager/dir.c         if (dir_get_dotdot_stat (vpath, &st))
vpath              81 src/filemanager/dir.h gboolean dir_list_load (dir_list * list, const vfs_path_t * vpath, GCompareFunc sort,
vpath              83 src/filemanager/dir.h gboolean dir_list_reload (dir_list * list, const vfs_path_t * vpath, GCompareFunc sort,
vpath             337 src/filemanager/file.c is_in_linklist (const GSList *lp, const vfs_path_t *vpath, const struct stat *sb)
vpath             343 src/filemanager/file.c     class = vfs_path_get_last_path_vfs (vpath);
vpath            1183 src/filemanager/file.c try_remove_file (file_op_context_t *ctx, const vfs_path_t *vpath, FileProgressStatus *status)
vpath            1185 src/filemanager/file.c     while (mc_unlink (vpath) != 0 && !ctx->ignore_all)
vpath            1187 src/filemanager/file.c         *status = file_error (TRUE, _("Cannot remove file \"%s\"\n%s"), vfs_path_as_str (vpath));
vpath            1383 src/filemanager/file.c erase_file (file_op_total_context_t *tctx, file_op_context_t *ctx, const vfs_path_t *vpath)
vpath            1389 src/filemanager/file.c     if (file_progress_show_deleting (ctx, vpath, &tctx->progress_count))
vpath            1398 src/filemanager/file.c     if (tctx->progress_count != 0 && mc_lstat (vpath, &buf) != 0)
vpath            1404 src/filemanager/file.c     if (!try_remove_file (ctx, vpath, &return_status) && return_status == FILE_ABORT)
vpath            1416 src/filemanager/file.c try_erase_dir (file_op_context_t *ctx, const vfs_path_t *vpath)
vpath            1421 src/filemanager/file.c     dir = vfs_path_as_str (vpath);
vpath            1444 src/filemanager/file.c recursive_erase (file_op_total_context_t *tctx, file_op_context_t *ctx, const vfs_path_t *vpath)
vpath            1450 src/filemanager/file.c     reading = mc_opendir (vpath);
vpath            1462 src/filemanager/file.c         tmp_vpath = vfs_path_append_new (vpath, next->d_name, (char *) NULL);
vpath            1480 src/filemanager/file.c     file_progress_show_deleting (ctx, vpath, NULL);
vpath            1487 src/filemanager/file.c     return try_erase_dir (ctx, vpath);
vpath            1505 src/filemanager/file.c check_dir_is_empty (const vfs_path_t *vpath)
vpath            1511 src/filemanager/file.c     dir = mc_opendir (vpath);
vpath            1529 src/filemanager/file.c erase_dir_iff_empty (file_op_context_t *ctx, const vfs_path_t *vpath, size_t count)
vpath            1531 src/filemanager/file.c     file_progress_show_deleting (ctx, vpath, NULL);
vpath            1538 src/filemanager/file.c     if (check_dir_is_empty (vpath) != 1)
vpath            1542 src/filemanager/file.c     return try_erase_dir (ctx, vpath);
vpath            1549 src/filemanager/file.c                       const vfs_path_t *vpath, FileProgressStatus *status)
vpath            1574 src/filemanager/file.c     erase_dir_iff_empty (ctx, vpath, tctx->progress_count);
vpath            2229 src/filemanager/file.c file_is_symlink_to_dir (const vfs_path_t *vpath, struct stat *st, gboolean *stale_link)
vpath            2239 src/filemanager/file.c         if (mc_lstat (vpath, st) != 0)
vpath            2247 src/filemanager/file.c         stale = (mc_stat (vpath, &st3) != 0);
vpath            3294 src/filemanager/file.c erase_dir (file_op_total_context_t *tctx, file_op_context_t *ctx, const vfs_path_t *vpath)
vpath            3296 src/filemanager/file.c     file_progress_show_deleting (ctx, vpath, NULL);
vpath            3310 src/filemanager/file.c     if (check_dir_is_empty (vpath) == 0)
vpath            3314 src/filemanager/file.c         error = query_recursive (ctx, vfs_path_as_str (vpath));
vpath            3316 src/filemanager/file.c             error = recursive_erase (tctx, ctx, vpath);
vpath            3320 src/filemanager/file.c     return try_erase_dir (ctx, vpath);
vpath            3579 src/filemanager/file.c             vfs_path_t *vpath;
vpath            3582 src/filemanager/file.c             vpath = vfs_path_from_str (PATH_SEP_STR);
vpath            3583 src/filemanager/file.c             chdir_retcode = mc_chdir (vpath);
vpath            3584 src/filemanager/file.c             vfs_path_free (vpath, TRUE);
vpath              53 src/filemanager/file.h                               const vfs_path_t * vpath);
vpath            1131 src/filemanager/filegui.c file_progress_show_source (file_op_context_t *ctx, const vfs_path_t *vpath)
vpath            1140 src/filemanager/filegui.c     if (vpath != NULL)
vpath            1143 src/filemanager/filegui.c         label_set_text (ui->src_file, truncFileStringSecure (ui->op_dlg, vfs_path_as_str (vpath)));
vpath            1155 src/filemanager/filegui.c file_progress_show_target (file_op_context_t *ctx, const vfs_path_t *vpath)
vpath            1164 src/filemanager/filegui.c     if (vpath != NULL)
vpath            1167 src/filemanager/filegui.c         label_set_text (ui->tgt_file, truncFileStringSecure (ui->op_dlg, vfs_path_as_str (vpath)));
vpath            1179 src/filemanager/filegui.c file_progress_show_deleting (file_op_context_t *ctx, const vfs_path_t *vpath, size_t *count)
vpath            1202 src/filemanager/filegui.c         s = vfs_path_as_str (vpath);
vpath            1299 src/filemanager/filegui.c     vfs_path_t *vpath;
vpath            1316 src/filemanager/filegui.c     vpath = vfs_path_from_str_flags (def_text, only_one ? VPF_NO_CANON : VPF_NONE);
vpath            1317 src/filemanager/filegui.c     tmp = vfs_path_to_str_flags (vpath, 0, VPF_STRIP_PASSWORD);
vpath            1318 src/filemanager/filegui.c     vfs_path_free (vpath, TRUE);
vpath            1455 src/filemanager/filegui.c         vpath = vfs_path_from_str (dest_dir);
vpath            1468 src/filemanager/filegui.c                     || (mc_stat (vpath, &buf) == 0 && S_ISDIR (buf.st_mode))))
vpath            1471 src/filemanager/filegui.c                     || (only_one && mc_stat (vpath, &buf) == 0 && S_ISDIR (buf.st_mode)))))
vpath            1485 src/filemanager/filegui.c         vfs_path_free (vpath, TRUE);
vpath              35 src/filemanager/filegui.h void file_progress_show_source (file_op_context_t * ctx, const vfs_path_t * vpath);
vpath              36 src/filemanager/filegui.h void file_progress_show_target (file_op_context_t * ctx, const vfs_path_t * vpath);
vpath              37 src/filemanager/filegui.h gboolean file_progress_show_deleting (file_op_context_t * ctx, const vfs_path_t * vpath,
vpath             643 src/filemanager/filemanager.c         vfs_path_t *vpath;
vpath             646 src/filemanager/filemanager.c             vpath = vfs_path_from_str (other_dir);
vpath             648 src/filemanager/filemanager.c             vpath = vfs_path_append_new (original_dir, other_dir, (char *) NULL);
vpath             649 src/filemanager/filemanager.c         mc_chdir (vpath);
vpath             650 src/filemanager/filemanager.c         vfs_path_free (vpath, TRUE);
vpath             659 src/filemanager/filemanager.c         vfs_path_t *vpath;
vpath             662 src/filemanager/filemanager.c             vpath = vfs_path_from_str (current_dir);
vpath             664 src/filemanager/filemanager.c             vpath = vfs_path_append_new (original_dir, current_dir, (char *) NULL);
vpath             665 src/filemanager/filemanager.c         mc_chdir (vpath);
vpath             666 src/filemanager/filemanager.c         vfs_path_free (vpath, TRUE);
vpath             729 src/filemanager/filemanager.c         vfs_path_t *vpath;
vpath             732 src/filemanager/filemanager.c         vpath = vfs_path_append_new (panel->cwd_vpath, fe->fname->str, (char *) NULL);
vpath             733 src/filemanager/filemanager.c         i = mc_readlink (vpath, buffer, sizeof (buffer) - 1);
vpath             734 src/filemanager/filemanager.c         vfs_path_free (vpath, TRUE);
vpath             867 src/filemanager/filemanager.c     vfs_path_t *vpath;
vpath             873 src/filemanager/filemanager.c     vpath = vfs_path_from_str (d);
vpath             874 src/filemanager/filemanager.c     ret = mc_chdir (vpath);
vpath             876 src/filemanager/filemanager.c     vfs_path_free (vpath, TRUE);
vpath             951 src/filemanager/filemanager.c     vfs_path_t *vpath;
vpath             953 src/filemanager/filemanager.c     vpath = vfs_path_from_str (filename);
vpath             954 src/filemanager/filemanager.c     if (!vfs_file_is_local (vpath) || g_path_is_absolute (filename))
vpath             955 src/filemanager/filemanager.c         return vpath;
vpath             957 src/filemanager/filemanager.c     vfs_path_free (vpath, TRUE);
vpath             981 src/filemanager/filemanager.c             vfs_path_t *vpath = NULL;
vpath             984 src/filemanager/filemanager.c                 vpath = prepend_cwd_on_local ((char *) mc_run_param0);
vpath             986 src/filemanager/filemanager.c             ret = view_file (vpath, FALSE, TRUE);
vpath             987 src/filemanager/filemanager.c             vfs_path_free (vpath, TRUE);
vpath              64 src/filemanager/filenot.c my_mkdir_rec (const vfs_path_t *vpath, mode_t mode)
vpath              69 src/filemanager/filenot.c     if (mc_mkdir (vpath, mode) == 0)
vpath              75 src/filemanager/filenot.c     if (!vfs_file_is_local (vpath))
vpath              78 src/filemanager/filenot.c     if (strcmp (vfs_path_as_str (vpath), PATH_SEP_STR) == 0)
vpath              84 src/filemanager/filenot.c     q = vfs_path_append_new (vpath, "..", (char *) NULL);
vpath              89 src/filemanager/filenot.c         result = mc_mkdir (vpath, mode);
vpath              99 src/filemanager/filenot.c my_mkdir (const vfs_path_t *vpath, mode_t mode)
vpath             103 src/filemanager/filenot.c     result = my_mkdir_rec (vpath, mode);
vpath             113 src/filemanager/filenot.c     vfs_path_t *vpath;
vpath             115 src/filemanager/filenot.c     vpath = vfs_path_from_str_flags (path, VPF_NO_CANON);
vpath             117 src/filemanager/filenot.c     result = mc_rmdir (vpath);
vpath             118 src/filemanager/filenot.c     vfs_path_free (vpath, TRUE);
vpath              21 src/filemanager/filenot.h int my_mkdir (const vfs_path_t * vpath, mode_t mode);
vpath              21 src/filemanager/fileopctx.h typedef int (*mc_stat_fn) (const vfs_path_t * vpath, struct stat * buf);
vpath            1022 src/filemanager/find.c     vfs_path_t *vpath;
vpath            1026 src/filemanager/find.c     vpath = vfs_path_build_filename (directory, filename, (char *) NULL);
vpath            1028 src/filemanager/find.c     if (mc_stat (vpath, &s) == 0 && S_ISREG (s.st_mode))
vpath            1029 src/filemanager/find.c         file_fd = mc_open (vpath, O_RDONLY);
vpath            1031 src/filemanager/find.c     vfs_path_free (vpath, TRUE);
vpath             269 src/filemanager/info.c             vfs_path_t *vpath;
vpath             272 src/filemanager/info.c             vpath = vfs_path_from_str (fe->fname->str);
vpath             274 src/filemanager/info.c             if (mc_fgetflags (vpath, &attr) == 0)
vpath             279 src/filemanager/info.c             vfs_path_free (vpath, TRUE);
vpath            1471 src/filemanager/panel.c directory_history_add (WPanel *panel, const vfs_path_t *vpath)
vpath            1475 src/filemanager/panel.c     tmp = vfs_path_to_str_flags (vpath, 0, VPF_STRIP_PASSWORD);
vpath            2073 src/filemanager/panel.c             vfs_path_t *vpath;
vpath            2075 src/filemanager/panel.c             vpath = vfs_path_from_str (fe->fname->str);
vpath            2076 src/filemanager/panel.c             panel_cd (panel, vpath, cd_exact);
vpath            2077 src/filemanager/panel.c             vfs_path_free (vpath, TRUE);
vpath            2438 src/filemanager/panel.c         vfs_path_t *vpath;
vpath            2440 src/filemanager/panel.c         vpath = vfs_path_from_str (fe->fname->str);
vpath            2441 src/filemanager/panel.c         panel_cd (panel, vpath, cd_exact);
vpath            2442 src/filemanager/panel.c         vfs_path_free (vpath, TRUE);
vpath            3447 src/filemanager/panel.c subshell_chdir (const vfs_path_t *vpath)
vpath            3451 src/filemanager/panel.c         do_subshell_chdir (vpath, FALSE);
vpath            3453 src/filemanager/panel.c     (void) vpath;
vpath            4222 src/filemanager/panel.c         vfs_path_t *vpath;
vpath            4224 src/filemanager/panel.c         vpath = vfs_path_from_str (list->list[i].fname->str);
vpath            4225 src/filemanager/panel.c         if (mc_lstat (vpath, &list->list[i].st) != 0)
vpath            4233 src/filemanager/panel.c         vfs_path_free (vpath, TRUE);
vpath            4377 src/filemanager/panel.c panel_recursive_cd_to_parent (const vfs_path_t *vpath)
vpath            4381 src/filemanager/panel.c     cwd_vpath = vfs_path_clone (vpath);
vpath            4527 src/filemanager/panel.c panel_set_cwd (WPanel *panel, const vfs_path_t *vpath)
vpath            4529 src/filemanager/panel.c     if (vpath != panel->cwd_vpath)      /* check if new vpath is not the panel->cwd_vpath object */
vpath            4532 src/filemanager/panel.c         panel->cwd_vpath = vfs_path_clone (vpath);
vpath            4545 src/filemanager/panel.c panel_set_lwd (WPanel *panel, const vfs_path_t *vpath)
vpath            4547 src/filemanager/panel.c     if (vpath != panel->lwd_vpath)      /* check if new vpath is not the panel->lwd_vpath object */
vpath            4550 src/filemanager/panel.c         panel->lwd_vpath = vfs_path_clone (vpath);
vpath            4654 src/filemanager/panel.c panel_sized_with_dir_new (const char *panel_name, const WRect *r, const vfs_path_t *vpath)
vpath            4664 src/filemanager/panel.c     if (vpath != NULL)
vpath            4667 src/filemanager/panel.c         panel_set_cwd (panel, vpath);
vpath            5126 src/filemanager/panel.c remove_encoding_from_path (const vfs_path_t *vpath)
vpath            5136 src/filemanager/panel.c     for (indx = 0; indx < vfs_path_elements_count (vpath); indx++)
vpath            5141 src/filemanager/panel.c         path_element = vfs_path_element_clone (vfs_path_get_by_index (vpath, indx));
vpath             156 src/filemanager/panel.h                                   const vfs_path_t * vpath);
vpath             166 src/filemanager/panel.h vfs_path_t *remove_encoding_from_path (const vfs_path_t * vpath);
vpath             197 src/filemanager/panel.h void panel_set_cwd (WPanel * panel, const vfs_path_t * vpath);
vpath             198 src/filemanager/panel.h void panel_set_lwd (WPanel * panel, const vfs_path_t * vpath);
vpath             239 src/filemanager/panel.h panel_with_dir_new (const char *panel_name, const vfs_path_t *vpath)
vpath             244 src/filemanager/panel.h     return panel_sized_with_dir_new (panel_name, &r, vpath);
vpath             209 src/filemanager/tree.c     vfs_path_t *vpath;
vpath             214 src/filemanager/tree.c     vpath = vfs_path_from_str (mc_config_get_home_dir ());
vpath             215 src/filemanager/tree.c     tree_chdir (tree, vpath);
vpath             216 src/filemanager/tree.c     vfs_path_free (vpath, TRUE);
vpath            1338 src/filemanager/tree.c sync_tree (const vfs_path_t *vpath)
vpath            1340 src/filemanager/tree.c     tree_chdir (the_tree, vpath);
vpath              30 src/filemanager/tree.h void sync_tree (const vfs_path_t * vpath);
vpath             269 src/filemanager/treestore.c                         vfs_path_t *vpath;
vpath             271 src/filemanager/treestore.c                         vpath = vfs_path_from_str (oldname);
vpath             273 src/filemanager/treestore.c                         if (vfs_file_is_local (vpath))
vpath             282 src/filemanager/treestore.c                         vfs_path_free (vpath, TRUE);
vpath             288 src/filemanager/treestore.c                 vfs_path_t *vpath;
vpath             290 src/filemanager/treestore.c                 vpath = vfs_path_from_str (lc_name);
vpath             291 src/filemanager/treestore.c                 if (vfs_file_is_local (vpath))
vpath             293 src/filemanager/treestore.c                     e = tree_store_add_entry (vpath);
vpath             296 src/filemanager/treestore.c                 vfs_path_free (vpath, TRUE);
vpath             323 src/filemanager/treestore.c encode (const vfs_path_t *vpath, size_t offset)
vpath             325 src/filemanager/treestore.c     return str_escape (vfs_path_as_str (vpath) + offset, -1, "\n\\", FALSE);
vpath             560 src/filemanager/treestore.c should_skip_directory (const vfs_path_t *vpath)
vpath             579 src/filemanager/treestore.c         if (strncmp (vfs_path_as_str (vpath), l->data, strlen (l->data)) == 0)
vpath             800 src/filemanager/treestore.c tree_store_start_check (const vfs_path_t *vpath)
vpath             812 src/filemanager/treestore.c     current = tree_store_whereis (vpath);
vpath             817 src/filemanager/treestore.c         if (mc_stat (vpath, &s) == -1 || !S_ISDIR (s.st_mode))
vpath             820 src/filemanager/treestore.c         current = tree_store_add_entry (vpath);
vpath             821 src/filemanager/treestore.c         ts.check_name = vfs_path_clone (vpath);
vpath             826 src/filemanager/treestore.c     ts.check_name = vfs_path_clone (vpath);
vpath             900 src/filemanager/treestore.c tree_store_rescan (const vfs_path_t *vpath)
vpath             906 src/filemanager/treestore.c     if (should_skip_directory (vpath))
vpath             908 src/filemanager/treestore.c         entry = tree_store_add_entry (vpath);
vpath             913 src/filemanager/treestore.c     entry = tree_store_start_check (vpath);
vpath             917 src/filemanager/treestore.c     dirp = mc_opendir (vpath);
vpath             927 src/filemanager/treestore.c                 tmp_vpath = vfs_path_append_new (vpath, dp->d_name, (char *) NULL);
vpath              53 src/filemanager/treestore.h tree_entry *tree_store_start_check (const vfs_path_t * vpath);
vpath              57 src/filemanager/treestore.h tree_entry *tree_store_rescan (const vfs_path_t * vpath);
vpath             356 src/main.c             vfs_path_t *vpath;
vpath             359 src/main.c             vpath = vfs_path_from_str (buffer);
vpath             360 src/main.c             if (vfs_file_is_local (vpath))
vpath             364 src/main.c             vfs_path_free (vpath, TRUE);
vpath            1700 src/subshell/common.c do_subshell_chdir (const vfs_path_t *vpath, gboolean update_prompt)
vpath            1747 src/subshell/common.c     if (vpath == NULL)
vpath            1753 src/subshell/common.c         translate = vfs_translate_path (vfs_path_as_str (vpath));
vpath              49 src/subshell/subshell.h void do_subshell_chdir (const vfs_path_t * vpath, gboolean update_prompt);
vpath             226 src/vfs/cpio/cpio.c cpio_open_cpio_file (struct vfs_class *me, struct vfs_s_super *super, const vfs_path_t *vpath)
vpath             233 src/vfs/cpio/cpio.c     fd = mc_open (vpath, O_RDONLY);
vpath             236 src/vfs/cpio/cpio.c         message (D_ERROR, MSG_ERROR, _("Cannot open cpio archive\n%s"), vfs_path_as_str (vpath));
vpath             240 src/vfs/cpio/cpio.c     super->name = g_strdup (vfs_path_as_str (vpath));
vpath             242 src/vfs/cpio/cpio.c     mc_stat (vpath, &arch->st);
vpath             764 src/vfs/cpio/cpio.c cpio_open_archive (struct vfs_s_super *super, const vfs_path_t *vpath,
vpath             769 src/vfs/cpio/cpio.c     if (cpio_open_cpio_file (vpath_element->class, super, vpath) == -1)
vpath             785 src/vfs/cpio/cpio.c                          vfs_path_as_str (vpath));
vpath             805 src/vfs/cpio/cpio.c cpio_super_check (const vfs_path_t *vpath)
vpath             810 src/vfs/cpio/cpio.c     stat_result = mc_stat (vpath, &sb);
vpath             818 src/vfs/cpio/cpio.c                  const vfs_path_t *vpath, void *cookie)
vpath             824 src/vfs/cpio/cpio.c     if (strcmp (parc->name, vfs_path_as_str (vpath)))
vpath             776 src/vfs/extfs/extfs.c extfs_get_path (const vfs_path_t *vpath, struct extfs_super_t **archive, int flags)
vpath             785 src/vfs/extfs/extfs.c     path_element = vfs_path_get_by_index (vpath, -1);
vpath             791 src/vfs/extfs/extfs.c     archive_name = vfs_path_to_str_elements_count (vpath, -1);
vpath             907 src/vfs/extfs/extfs.c         vfs_path_t *vpath;
vpath             910 src/vfs/extfs/extfs.c         vpath = vfs_path_from_str (archive_name);
vpath             911 src/vfs/extfs/extfs.c         path = vfs_path_get_last_path_str (vpath);
vpath             913 src/vfs/extfs/extfs.c         vfs_path_free (vpath, TRUE);
vpath            1012 src/vfs/extfs/extfs.c extfs_run (const vfs_path_t *vpath)
vpath            1020 src/vfs/extfs/extfs.c     p = extfs_get_path (vpath, &archive, FL_NONE);
vpath            1040 src/vfs/extfs/extfs.c extfs_open (const vfs_path_t *vpath, int flags, mode_t mode)
vpath            1049 src/vfs/extfs/extfs.c     q = extfs_get_path (vpath, &archive, FL_NONE);
vpath            1175 src/vfs/extfs/extfs.c extfs_opendir (const vfs_path_t *vpath)
vpath            1182 src/vfs/extfs/extfs.c     q = extfs_get_path (vpath, &archive, FL_NONE);
vpath            1254 src/vfs/extfs/extfs.c extfs_internal_stat (const vfs_path_t *vpath, struct stat *buf, gboolean resolve)
vpath            1261 src/vfs/extfs/extfs.c     q = extfs_get_path (vpath, &archive, FL_NONE);
vpath            1282 src/vfs/extfs/extfs.c extfs_stat (const vfs_path_t *vpath, struct stat *buf)
vpath            1284 src/vfs/extfs/extfs.c     return extfs_internal_stat (vpath, buf, TRUE);
vpath            1290 src/vfs/extfs/extfs.c extfs_lstat (const vfs_path_t *vpath, struct stat *buf)
vpath            1292 src/vfs/extfs/extfs.c     return extfs_internal_stat (vpath, buf, FALSE);
vpath            1309 src/vfs/extfs/extfs.c extfs_readlink (const vfs_path_t *vpath, char *buf, size_t size)
vpath            1317 src/vfs/extfs/extfs.c     q = extfs_get_path (vpath, &archive, FL_NONE);
vpath            1325 src/vfs/extfs/extfs.c         VFS_CLASS (vfs_path_get_last_path_vfs (vpath))->verrno = EINVAL;
vpath            1341 src/vfs/extfs/extfs.c extfs_chown (const vfs_path_t *vpath, uid_t owner, gid_t group)
vpath            1343 src/vfs/extfs/extfs.c     (void) vpath;
vpath            1352 src/vfs/extfs/extfs.c extfs_chmod (const vfs_path_t *vpath, mode_t mode)
vpath            1354 src/vfs/extfs/extfs.c     (void) vpath;
vpath            1373 src/vfs/extfs/extfs.c extfs_unlink (const vfs_path_t *vpath)
vpath            1380 src/vfs/extfs/extfs.c     q = extfs_get_path (vpath, &archive, FL_NONE);
vpath            1391 src/vfs/extfs/extfs.c         VFS_CLASS (vfs_path_get_last_path_vfs (vpath))->verrno = EISDIR;
vpath            1408 src/vfs/extfs/extfs.c extfs_mkdir (const vfs_path_t *vpath, mode_t mode)
vpath            1418 src/vfs/extfs/extfs.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            1419 src/vfs/extfs/extfs.c     q = extfs_get_path (vpath, &archive, FL_NONE);
vpath            1454 src/vfs/extfs/extfs.c extfs_rmdir (const vfs_path_t *vpath)
vpath            1461 src/vfs/extfs/extfs.c     q = extfs_get_path (vpath, &archive, FL_NONE);
vpath            1472 src/vfs/extfs/extfs.c         VFS_CLASS (vfs_path_get_last_path_vfs (vpath))->verrno = ENOTDIR;
vpath            1490 src/vfs/extfs/extfs.c extfs_chdir (const vfs_path_t *vpath)
vpath            1495 src/vfs/extfs/extfs.c     data = extfs_opendir (vpath);
vpath            1516 src/vfs/extfs/extfs.c extfs_getid (const vfs_path_t *vpath)
vpath            1521 src/vfs/extfs/extfs.c     p = extfs_get_path (vpath, &archive, FL_NO_OPEN);
vpath            1528 src/vfs/extfs/extfs.c extfs_getlocalcopy (const vfs_path_t *vpath)
vpath            1533 src/vfs/extfs/extfs.c     fh = VFS_FILE_HANDLER (extfs_open (vpath, O_RDONLY, 0));
vpath            1550 src/vfs/extfs/extfs.c extfs_ungetlocalcopy (const vfs_path_t *vpath, const vfs_path_t *local, gboolean has_changed)
vpath            1554 src/vfs/extfs/extfs.c     fh = VFS_FILE_HANDLER (extfs_open (vpath, O_RDONLY, 0));
vpath            1713 src/vfs/extfs/extfs.c extfs_setctl (const vfs_path_t *vpath, int ctlop, void *arg)
vpath            1719 src/vfs/extfs/extfs.c         extfs_run (vpath);
vpath            1021 src/vfs/ftpfs/ftpfs.c                     const vfs_path_t *vpath, const vfs_path_element_t *vpath_element)
vpath            1023 src/vfs/ftpfs/ftpfs.c     (void) vpath;
vpath            1038 src/vfs/ftpfs/ftpfs.c                     const vfs_path_t *vpath, void *cookie)
vpath            1043 src/vfs/ftpfs/ftpfs.c     (void) vpath;
vpath            2118 src/vfs/ftpfs/ftpfs.c ftpfs_send_command (const vfs_path_t *vpath, const char *cmd, int flags)
vpath            2127 src/vfs/ftpfs/ftpfs.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            2129 src/vfs/ftpfs/ftpfs.c     rpath = vfs_s_get_path (vpath, &super, 0);
vpath            2152 src/vfs/ftpfs/ftpfs.c ftpfs_stat (const vfs_path_t *vpath, struct stat *buf)
vpath            2156 src/vfs/ftpfs/ftpfs.c     ret = vfs_s_stat (vpath, buf);
vpath            2164 src/vfs/ftpfs/ftpfs.c ftpfs_lstat (const vfs_path_t *vpath, struct stat *buf)
vpath            2168 src/vfs/ftpfs/ftpfs.c     ret = vfs_s_lstat (vpath, buf);
vpath            2188 src/vfs/ftpfs/ftpfs.c ftpfs_chmod (const vfs_path_t *vpath, mode_t mode)
vpath            2194 src/vfs/ftpfs/ftpfs.c     ret = ftpfs_send_command (vpath, buf, OPT_FLUSH);
vpath            2201 src/vfs/ftpfs/ftpfs.c ftpfs_chown (const vfs_path_t *vpath, uid_t owner, gid_t group)
vpath            2204 src/vfs/ftpfs/ftpfs.c     (void) vpath;
vpath            2213 src/vfs/ftpfs/ftpfs.c     (void) vpath;
vpath            2223 src/vfs/ftpfs/ftpfs.c ftpfs_unlink (const vfs_path_t *vpath)
vpath            2225 src/vfs/ftpfs/ftpfs.c     return ftpfs_send_command (vpath, "DELE /%s", OPT_FLUSH);
vpath            2279 src/vfs/ftpfs/ftpfs.c ftpfs_mkdir (const vfs_path_t *vpath, mode_t mode)
vpath            2283 src/vfs/ftpfs/ftpfs.c     return ftpfs_send_command (vpath, "MKD /%s", OPT_FLUSH);
vpath            2289 src/vfs/ftpfs/ftpfs.c ftpfs_rmdir (const vfs_path_t *vpath)
vpath            2291 src/vfs/ftpfs/ftpfs.c     return ftpfs_send_command (vpath, "RMD /%s", OPT_FLUSH);
vpath            2335 src/vfs/ftpfs/ftpfs.c                 vfs_path_t *vpath;
vpath            2338 src/vfs/ftpfs/ftpfs.c                 handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name);
vpath            2343 src/vfs/ftpfs/ftpfs.c                 fh->ino->localname = vfs_path_free (vpath, FALSE);
vpath              64 src/vfs/local/local.c local_open (const vfs_path_t *vpath, int flags, mode_t mode)
vpath              70 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath              84 src/vfs/local/local.c local_opendir (const vfs_path_t *vpath)
vpath              90 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             145 src/vfs/local/local.c local_stat (const vfs_path_t *vpath, struct stat *buf)
vpath             149 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             156 src/vfs/local/local.c local_lstat (const vfs_path_t *vpath, struct stat *buf)
vpath             160 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             171 src/vfs/local/local.c local_chmod (const vfs_path_t *vpath, mode_t mode)
vpath             175 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             182 src/vfs/local/local.c local_chown (const vfs_path_t *vpath, uid_t owner, gid_t group)
vpath             186 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             195 src/vfs/local/local.c local_fgetflags (const vfs_path_t *vpath, unsigned long *flags)
vpath             199 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             206 src/vfs/local/local.c local_fsetflags (const vfs_path_t *vpath, unsigned long flags)
vpath             210 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             219 src/vfs/local/local.c local_utime (const vfs_path_t *vpath, mc_timesbuf_t *times)
vpath             221 src/vfs/local/local.c     return vfs_utime (vfs_path_get_last_path_str (vpath), times);
vpath             227 src/vfs/local/local.c local_readlink (const vfs_path_t *vpath, char *buf, size_t size)
vpath             231 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             238 src/vfs/local/local.c local_unlink (const vfs_path_t *vpath)
vpath             242 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             302 src/vfs/local/local.c local_chdir (const vfs_path_t *vpath)
vpath             306 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             313 src/vfs/local/local.c local_mknod (const vfs_path_t *vpath, mode_t mode, dev_t dev)
vpath             317 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             336 src/vfs/local/local.c local_mkdir (const vfs_path_t *vpath, mode_t mode)
vpath             340 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             347 src/vfs/local/local.c local_rmdir (const vfs_path_t *vpath)
vpath             351 src/vfs/local/local.c     path = vfs_path_get_last_path_str (vpath);
vpath             358 src/vfs/local/local.c local_getlocalcopy (const vfs_path_t *vpath)
vpath             360 src/vfs/local/local.c     return vfs_path_clone (vpath);
vpath             366 src/vfs/local/local.c local_ungetlocalcopy (const vfs_path_t *vpath, const vfs_path_t *local, gboolean has_changed)
vpath             368 src/vfs/local/local.c     (void) vpath;
vpath             135 src/vfs/sfs/sfs.c sfs_vfmake (const vfs_path_t *vpath, vfs_path_t *cache_vpath)
vpath             147 src/vfs/sfs/sfs.c     path_element = vfs_path_get_by_index (vpath, -1);
vpath             148 src/vfs/sfs/sfs.c     pname = vfs_path_clone (vpath);
vpath             253 src/vfs/sfs/sfs.c sfs_redirect (const vfs_path_t *vpath)
vpath             260 src/vfs/sfs/sfs.c     cur = g_slist_find_custom (head, vfs_path_as_str (vpath), cachedfile_compare);
vpath             269 src/vfs/sfs/sfs.c     handle = vfs_mkstemps (&cache_vpath, "sfs", vfs_path_get_last_path_str (vpath));
vpath             276 src/vfs/sfs/sfs.c     if (sfs_vfmake (vpath, cache_vpath) == 0)
vpath             279 src/vfs/sfs/sfs.c         cf->name = g_strdup (vfs_path_as_str (vpath));
vpath             295 src/vfs/sfs/sfs.c sfs_open (const vfs_path_t *vpath /*struct vfs_class *me, const char *path */ , int flags,
vpath             301 src/vfs/sfs/sfs.c     fd = open (sfs_redirect (vpath), NO_LINEAR (flags), mode);
vpath             314 src/vfs/sfs/sfs.c sfs_stat (const vfs_path_t *vpath, struct stat *buf)
vpath             316 src/vfs/sfs/sfs.c     return stat (sfs_redirect (vpath), buf);
vpath             322 src/vfs/sfs/sfs.c sfs_lstat (const vfs_path_t *vpath, struct stat *buf)
vpath             325 src/vfs/sfs/sfs.c     return lstat (sfs_redirect (vpath), buf);
vpath             327 src/vfs/sfs/sfs.c     return statlstat (sfs_redirect (vpath), buf);
vpath             334 src/vfs/sfs/sfs.c sfs_chmod (const vfs_path_t *vpath, mode_t mode)
vpath             336 src/vfs/sfs/sfs.c     return chmod (sfs_redirect (vpath), mode);
vpath             342 src/vfs/sfs/sfs.c sfs_chown (const vfs_path_t *vpath, uid_t owner, gid_t group)
vpath             344 src/vfs/sfs/sfs.c     return chown (sfs_redirect (vpath), owner, group);
vpath             350 src/vfs/sfs/sfs.c sfs_utime (const vfs_path_t *vpath, mc_timesbuf_t *times)
vpath             352 src/vfs/sfs/sfs.c     return vfs_utime (sfs_redirect (vpath), times);
vpath             358 src/vfs/sfs/sfs.c sfs_readlink (const vfs_path_t *vpath, char *buf, size_t size)
vpath             360 src/vfs/sfs/sfs.c     return readlink (sfs_redirect (vpath), buf, size);
vpath             366 src/vfs/sfs/sfs.c sfs_getid (const vfs_path_t *vpath)
vpath             370 src/vfs/sfs/sfs.c     cur = g_slist_find_custom (head, vfs_path_as_str (vpath), cachedfile_compare);
vpath             424 src/vfs/sfs/sfs.c sfs_getlocalcopy (const vfs_path_t *vpath)
vpath             426 src/vfs/sfs/sfs.c     return vfs_path_from_str (sfs_redirect (vpath));
vpath             432 src/vfs/sfs/sfs.c sfs_ungetlocalcopy (const vfs_path_t *vpath, const vfs_path_t *local, gboolean has_changed)
vpath             434 src/vfs/sfs/sfs.c     (void) vpath;
vpath             124 src/vfs/sftpfs/config_parser.c     vfs_path_t *vpath;
vpath             128 src/vfs/sftpfs/config_parser.c     vpath = vfs_path_from_str (fn);
vpath             130 src/vfs/sftpfs/config_parser.c     return vfs_path_free (vpath, FALSE);
vpath              66 src/vfs/sftpfs/dir.c sftpfs_opendir (const vfs_path_t *vpath, GError **mcerror)
vpath              74 src/vfs/sftpfs/dir.c     if (!sftpfs_op_init (&sftpfs_super, &path_element, vpath, mcerror))
vpath             167 src/vfs/sftpfs/dir.c sftpfs_mkdir (const vfs_path_t *vpath, mode_t mode, GError **mcerror)
vpath             174 src/vfs/sftpfs/dir.c     if (!sftpfs_op_init (&sftpfs_super, &path_element, vpath, mcerror))
vpath             204 src/vfs/sftpfs/dir.c sftpfs_rmdir (const vfs_path_t *vpath, GError **mcerror)
vpath             211 src/vfs/sftpfs/dir.c     if (!sftpfs_op_init (&sftpfs_super, &path_element, vpath, mcerror))
vpath             119 src/vfs/sftpfs/internal.c                   const vfs_path_t *vpath, GError **mcerror, int stat_type,
vpath             125 src/vfs/sftpfs/internal.c     if (!sftpfs_op_init (super, path_element, vpath, mcerror))
vpath             225 src/vfs/sftpfs/internal.c                 const vfs_path_t *vpath, GError **mcerror)
vpath             231 src/vfs/sftpfs/internal.c     if (vfs_s_get_path (vpath, &lc_super, 0) == NULL)
vpath             241 src/vfs/sftpfs/internal.c     *path_element = vfs_path_get_by_index (vpath, -1);
vpath             286 src/vfs/sftpfs/internal.c sftpfs_lstat (const vfs_path_t *vpath, struct stat *buf, GError **mcerror)
vpath             293 src/vfs/sftpfs/internal.c     res = sftpfs_stat_init (&super, &path_element, vpath, mcerror, LIBSSH2_SFTP_LSTAT, &attrs);
vpath             314 src/vfs/sftpfs/internal.c sftpfs_stat (const vfs_path_t *vpath, struct stat *buf, GError **mcerror)
vpath             321 src/vfs/sftpfs/internal.c     res = sftpfs_stat_init (&super, &path_element, vpath, mcerror, LIBSSH2_SFTP_STAT, &attrs);
vpath             344 src/vfs/sftpfs/internal.c sftpfs_readlink (const vfs_path_t *vpath, char *buf, size_t size, GError **mcerror)
vpath             351 src/vfs/sftpfs/internal.c     if (!sftpfs_op_init (&super, &path_element, vpath, mcerror))
vpath             436 src/vfs/sftpfs/internal.c sftpfs_utime (const vfs_path_t *vpath, time_t atime, time_t mtime, GError **mcerror)
vpath             444 src/vfs/sftpfs/internal.c     res = sftpfs_stat_init (&super, &path_element, vpath, mcerror, LIBSSH2_SFTP_LSTAT, &attrs);
vpath             490 src/vfs/sftpfs/internal.c sftpfs_chmod (const vfs_path_t *vpath, mode_t mode, GError **mcerror)
vpath             498 src/vfs/sftpfs/internal.c     res = sftpfs_stat_init (&super, &path_element, vpath, mcerror, LIBSSH2_SFTP_LSTAT, &attrs);
vpath             542 src/vfs/sftpfs/internal.c sftpfs_unlink (const vfs_path_t *vpath, GError **mcerror)
vpath             549 src/vfs/sftpfs/internal.c     if (!sftpfs_op_init (&super, &path_element, vpath, mcerror))
vpath              79 src/vfs/sftpfs/internal.h                          const vfs_path_t * vpath, GError ** mcerror);
vpath              82 src/vfs/sftpfs/internal.h int sftpfs_lstat (const vfs_path_t * vpath, struct stat *buf, GError ** mcerror);
vpath              83 src/vfs/sftpfs/internal.h int sftpfs_stat (const vfs_path_t * vpath, struct stat *buf, GError ** mcerror);
vpath              84 src/vfs/sftpfs/internal.h int sftpfs_readlink (const vfs_path_t * vpath, char *buf, size_t size, GError ** mcerror);
vpath              86 src/vfs/sftpfs/internal.h int sftpfs_utime (const vfs_path_t * vpath, time_t atime, time_t mtime, GError ** mcerror);
vpath              87 src/vfs/sftpfs/internal.h int sftpfs_chmod (const vfs_path_t * vpath, mode_t mode, GError ** mcerror);
vpath              88 src/vfs/sftpfs/internal.h int sftpfs_unlink (const vfs_path_t * vpath, GError ** mcerror);
vpath              98 src/vfs/sftpfs/internal.h void *sftpfs_opendir (const vfs_path_t * vpath, GError ** mcerror);
vpath             101 src/vfs/sftpfs/internal.h int sftpfs_mkdir (const vfs_path_t * vpath, mode_t mode, GError ** mcerror);
vpath             102 src/vfs/sftpfs/internal.h int sftpfs_rmdir (const vfs_path_t * vpath, GError ** mcerror);
vpath             107 src/vfs/sftpfs/sftpfs.c sftpfs_cb_open (const vfs_path_t *vpath, int flags, mode_t mode)
vpath             117 src/vfs/sftpfs/sftpfs.c     path_super = vfs_s_get_path (vpath, &super, 0);
vpath             121 src/vfs/sftpfs/sftpfs.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath             180 src/vfs/sftpfs/sftpfs.c sftpfs_cb_opendir (const vfs_path_t *vpath)
vpath             188 src/vfs/sftpfs/sftpfs.c     ret_value = sftpfs_opendir (vpath, &mcerror);
vpath             254 src/vfs/sftpfs/sftpfs.c sftpfs_cb_lstat (const vfs_path_t *vpath, struct stat *buf)
vpath             259 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_lstat (vpath, buf, &mcerror);
vpath             274 src/vfs/sftpfs/sftpfs.c sftpfs_cb_stat (const vfs_path_t *vpath, struct stat *buf)
vpath             279 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_stat (vpath, buf, &mcerror);
vpath             315 src/vfs/sftpfs/sftpfs.c sftpfs_cb_readlink (const vfs_path_t *vpath, char *buf, size_t size)
vpath             320 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_readlink (vpath, buf, size, &mcerror);
vpath             335 src/vfs/sftpfs/sftpfs.c sftpfs_cb_utime (const vfs_path_t *vpath, mc_timesbuf_t *times)
vpath             342 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_utime (vpath, atime.tv_sec, mtime.tv_sec, &mcerror);
vpath             379 src/vfs/sftpfs/sftpfs.c sftpfs_cb_mknod (const vfs_path_t *vpath, mode_t mode, dev_t dev)
vpath             381 src/vfs/sftpfs/sftpfs.c     (void) vpath;
vpath             417 src/vfs/sftpfs/sftpfs.c sftpfs_cb_chown (const vfs_path_t *vpath, uid_t owner, gid_t group)
vpath             419 src/vfs/sftpfs/sftpfs.c     (void) vpath;
vpath             517 src/vfs/sftpfs/sftpfs.c sftpfs_cb_chmod (const vfs_path_t *vpath, mode_t mode)
vpath             522 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_chmod (vpath, mode, &mcerror);
vpath             537 src/vfs/sftpfs/sftpfs.c sftpfs_cb_mkdir (const vfs_path_t *vpath, mode_t mode)
vpath             542 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_mkdir (vpath, mode, &mcerror);
vpath             556 src/vfs/sftpfs/sftpfs.c sftpfs_cb_rmdir (const vfs_path_t *vpath)
vpath             561 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_rmdir (vpath, &mcerror);
vpath             597 src/vfs/sftpfs/sftpfs.c sftpfs_cb_unlink (const vfs_path_t *vpath)
vpath             602 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_unlink (vpath, &mcerror);
vpath             684 src/vfs/sftpfs/sftpfs.c                      const vfs_path_t *vpath, void *cookie)
vpath             689 src/vfs/sftpfs/sftpfs.c     (void) vpath;
vpath             729 src/vfs/sftpfs/sftpfs.c sftpfs_open_archive (struct vfs_s_super *super, const vfs_path_t *vpath,
vpath             736 src/vfs/sftpfs/sftpfs.c     (void) vpath;
vpath             664 src/vfs/shell/shell.c                     const vfs_path_t *vpath, const vfs_path_element_t *vpath_element)
vpath             668 src/vfs/shell/shell.c     (void) vpath;
vpath             728 src/vfs/shell/shell.c                     const vfs_path_t *vpath, void *cookie)
vpath             733 src/vfs/shell/shell.c     (void) vpath;
vpath            1342 src/vfs/shell/shell.c shell_stat (const vfs_path_t *vpath, struct stat *buf)
vpath            1346 src/vfs/shell/shell.c     ret = vfs_s_stat (vpath, buf);
vpath            1354 src/vfs/shell/shell.c shell_lstat (const vfs_path_t *vpath, struct stat *buf)
vpath            1358 src/vfs/shell/shell.c     ret = vfs_s_lstat (vpath, buf);
vpath            1378 src/vfs/shell/shell.c shell_chmod (const vfs_path_t *vpath, mode_t mode)
vpath            1386 src/vfs/shell/shell.c     crpath = vfs_s_get_path (vpath, &super, 0);
vpath            1392 src/vfs/shell/shell.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            1407 src/vfs/shell/shell.c shell_chown (const vfs_path_t *vpath, uid_t owner, gid_t group)
vpath            1429 src/vfs/shell/shell.c     crpath = vfs_s_get_path (vpath, &super, 0);
vpath            1435 src/vfs/shell/shell.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            1451 src/vfs/shell/shell.c shell_utime (const vfs_path_t *vpath, mc_timesbuf_t *times)
vpath            1463 src/vfs/shell/shell.c     crpath = vfs_s_get_path (vpath, &super, 0);
vpath            1487 src/vfs/shell/shell.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            1504 src/vfs/shell/shell.c shell_unlink (const vfs_path_t *vpath)
vpath            1512 src/vfs/shell/shell.c     crpath = vfs_s_get_path (vpath, &super, 0);
vpath            1518 src/vfs/shell/shell.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            1532 src/vfs/shell/shell.c shell_exists (const vfs_path_t *vpath)
vpath            1540 src/vfs/shell/shell.c     crpath = vfs_s_get_path (vpath, &super, 0);
vpath            1546 src/vfs/shell/shell.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            1560 src/vfs/shell/shell.c shell_mkdir (const vfs_path_t *vpath, mode_t mode)
vpath            1570 src/vfs/shell/shell.c     crpath = vfs_s_get_path (vpath, &super, 0);
vpath            1576 src/vfs/shell/shell.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            1586 src/vfs/shell/shell.c     if (shell_exists (vpath) == 0)
vpath            1597 src/vfs/shell/shell.c shell_rmdir (const vfs_path_t *vpath)
vpath            1605 src/vfs/shell/shell.c     crpath = vfs_s_get_path (vpath, &super, 0);
vpath            1611 src/vfs/shell/shell.c     me = VFS_CLASS (vfs_path_get_last_path_vfs (vpath));
vpath            1653 src/vfs/shell/shell.c             vfs_path_t *vpath = NULL;
vpath            1656 src/vfs/shell/shell.c             tmp_handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name);
vpath            1660 src/vfs/shell/shell.c             fh->ino->localname = vfs_path_free (vpath, FALSE);
vpath            1718 src/vfs/shell/shell.c shell_open (const vfs_path_t *vpath, int flags, mode_t mode)
vpath            1725 src/vfs/shell/shell.c     return vfs_s_open (vpath, flags, mode);
vpath             901 src/vfs/tar/tar.c tar_open_archive_int (struct vfs_class *me, const vfs_path_t *vpath, struct vfs_s_super *archive)
vpath             908 src/vfs/tar/tar.c     result = mc_open (vpath, O_RDONLY);
vpath             911 src/vfs/tar/tar.c         message (D_ERROR, MSG_ERROR, _("Cannot open tar archive\n%s"), vfs_path_as_str (vpath));
vpath             915 src/vfs/tar/tar.c     archive->name = g_strdup (vfs_path_as_str (vpath));
vpath             916 src/vfs/tar/tar.c     mc_stat (vpath, &arch->st);
vpath             969 src/vfs/tar/tar.c tar_open_archive (struct vfs_s_super *archive, const vfs_path_t *vpath,
vpath             977 src/vfs/tar/tar.c     if (!tar_open_archive_int (vpath_element->class, vpath, archive))
vpath             994 src/vfs/tar/tar.c                      vfs_path_as_str (vpath));
vpath            1019 src/vfs/tar/tar.c                          vfs_path_as_str (vpath));
vpath            1050 src/vfs/tar/tar.c tar_super_check (const vfs_path_t *vpath)
vpath            1055 src/vfs/tar/tar.c     stat_result = mc_stat (vpath, &stat_buf);
vpath            1064 src/vfs/tar/tar.c                 const vfs_path_t *vpath, void *cookie)
vpath            1070 src/vfs/tar/tar.c     if (strcmp (parc->name, vfs_path_as_str (vpath)) != 0)
vpath             149 src/vfs/undelfs/undelfs.c undelfs_get_path (const vfs_path_t *vpath, char **fsname, char **file)
vpath             153 src/vfs/undelfs/undelfs.c     dirname = vfs_path_get_last_path_str (vpath);
vpath             333 src/vfs/undelfs/undelfs.c undelfs_opendir (const vfs_path_t *vpath)
vpath             338 src/vfs/undelfs/undelfs.c     class_name = vfs_path_get_last_path_vfs (vpath)->name;
vpath             339 src/vfs/undelfs/undelfs.c     undelfs_get_path (vpath, &file, &f);
vpath             433 src/vfs/undelfs/undelfs.c undelfs_open (const vfs_path_t *vpath, int flags, mode_t mode)
vpath             442 src/vfs/undelfs/undelfs.c     undelfs_get_path (vpath, &file, &f);
vpath             646 src/vfs/undelfs/undelfs.c undelfs_lstat (const vfs_path_t *vpath, struct stat *buf)
vpath             651 src/vfs/undelfs/undelfs.c     undelfs_get_path (vpath, &file, &f);
vpath             701 src/vfs/undelfs/undelfs.c undelfs_chdir (const vfs_path_t *vpath)
vpath             706 src/vfs/undelfs/undelfs.c     undelfs_get_path (vpath, &file, &f);
vpath             746 src/vfs/undelfs/undelfs.c undelfs_getid (const vfs_path_t *vpath)
vpath             751 src/vfs/undelfs/undelfs.c     undelfs_get_path (vpath, &fsname, &fname);
vpath             289 src/viewer/mcviewer.c     vfs_path_t *vpath = NULL;
vpath             337 src/viewer/mcviewer.c         vpath = vfs_path_from_str (file);
vpath             338 src/viewer/mcviewer.c         fd = mc_open (vpath, O_RDONLY | O_NONBLOCK);
vpath             467 src/viewer/mcviewer.c     vfs_path_free (vpath, TRUE);
vpath              46 tests/lib/vfs/current_dir.c test_chdir (const vfs_path_t *vpath)
vpath              48 tests/lib/vfs/current_dir.c     (void) vpath;
vpath             156 tests/lib/vfs/current_dir.c     vfs_path_t *vpath;
vpath             163 tests/lib/vfs/current_dir.c     vpath = vfs_path_from_str (data->input_cd_path);
vpath             166 tests/lib/vfs/current_dir.c     mc_chdir (vpath);
vpath             176 tests/lib/vfs/current_dir.c     vfs_path_free (vpath, TRUE);
vpath             112 tests/lib/vfs/path_len.c     vfs_path_t *vpath;
vpath             116 tests/lib/vfs/path_len.c     vpath = vfs_path_from_str (data->input_path);
vpath             117 tests/lib/vfs/path_len.c     path = vpath != NULL ? vfs_path_get_by_index (vpath, 0)->path : NULL;
vpath             120 tests/lib/vfs/path_len.c     actual_length_terminal_encoding = vfs_path_len (vpath);
vpath             127 tests/lib/vfs/path_len.c     vfs_path_free (vpath, TRUE);
vpath             155 tests/lib/vfs/path_manipulations.c     vfs_path_t *vpath;
vpath             157 tests/lib/vfs/path_manipulations.c     vpath = vfs_path_from_str_flags (data->input_path, data->input_flags);
vpath             160 tests/lib/vfs/path_manipulations.c     tokens_count = vfs_path_tokens_count (vpath);
vpath             165 tests/lib/vfs/path_manipulations.c     vfs_path_free (vpath, TRUE);
vpath             282 tests/lib/vfs/path_manipulations.c     vfs_path_t *vpath;
vpath             285 tests/lib/vfs/path_manipulations.c     vpath = vfs_path_from_str_flags (data->input_path, VPF_NO_CANON);
vpath             288 tests/lib/vfs/path_manipulations.c     actual_path = vfs_path_tokens_get (vpath, data->input_start_position, data->input_length);
vpath             294 tests/lib/vfs/path_manipulations.c     vfs_path_free (vpath, TRUE);
vpath             387 tests/lib/vfs/path_manipulations.c     vfs_path_t *vpath;
vpath             391 tests/lib/vfs/path_manipulations.c     vpath = vfs_path_from_str_flags (data->input_path, VPF_NO_CANON);
vpath             394 tests/lib/vfs/path_manipulations.c     mctest_assert_true (vpath->relative);
vpath             395 tests/lib/vfs/path_manipulations.c     mctest_assert_str_eq (vfs_path_get_last_path_str (vpath), data->expected_last_path_in_element);
vpath             396 tests/lib/vfs/path_manipulations.c     mctest_assert_str_eq (vfs_path_as_str (vpath), data->expected_path);
vpath             398 tests/lib/vfs/path_manipulations.c     vfs_path_free (vpath, TRUE);
vpath             412 tests/lib/vfs/path_manipulations.c     vfs_path_t *vpath, *cloned_vpath;
vpath             414 tests/lib/vfs/path_manipulations.c     vpath = vfs_path_from_str_flags (data->input_path, VPF_NO_CANON);
vpath             418 tests/lib/vfs/path_manipulations.c     cloned_vpath = vfs_path_clone (vpath);
vpath             426 tests/lib/vfs/path_manipulations.c     vfs_path_free (vpath, TRUE);
vpath             139 tests/lib/vfs/path_recode.c     vfs_path_t *vpath;
vpath             146 tests/lib/vfs/path_recode.c     vpath = vfs_path_from_str (data->input_path);
vpath             147 tests/lib/vfs/path_recode.c     element_path = vfs_path_get_last_path_str (vpath);
vpath             150 tests/lib/vfs/path_recode.c     vpath_str = vfs_path_as_str (vpath);
vpath             151 tests/lib/vfs/path_recode.c     mctest_assert_ptr_ne (vpath, NULL);
vpath             155 tests/lib/vfs/path_recode.c     vfs_path_free (vpath, TRUE);
vpath             240 tests/lib/vfs/path_recode.c     vfs_path_t *vpath;
vpath             250 tests/lib/vfs/path_recode.c     vpath = vfs_path_from_str_flags (data->input_path, data->input_from_str_flags);
vpath             251 tests/lib/vfs/path_recode.c     str_path = vfs_path_to_str_flags (vpath, 0, data->input_to_str_flags);
vpath             257 tests/lib/vfs/path_recode.c     vfs_path_free (vpath, TRUE);
vpath             139 tests/lib/vfs/path_serialize.c     vfs_path_t *vpath;
vpath             144 tests/lib/vfs/path_serialize.c     vpath = vfs_path_from_str_flags (ETALON_PATH_STR, VPF_USE_DEPRECATED_PARSER);
vpath             145 tests/lib/vfs/path_serialize.c     serialized_vpath = vfs_path_serialize (vpath, &error);
vpath             147 tests/lib/vfs/path_serialize.c     vfs_path_free (vpath, TRUE);
vpath             167 tests/lib/vfs/path_serialize.c     vfs_path_t *vpath;
vpath             171 tests/lib/vfs/path_serialize.c     vpath = vfs_path_deserialize (ETALON_SERIALIZED_PATH, &error);
vpath             174 tests/lib/vfs/path_serialize.c     mctest_assert_ptr_ne (vpath, NULL);
vpath             175 tests/lib/vfs/path_serialize.c     mctest_assert_str_eq (vfs_path_as_str (vpath), ETALON_PATH_URL_STR);
vpath             177 tests/lib/vfs/path_serialize.c     vfs_path_free (vpath, TRUE);
vpath              42 tests/lib/vfs/relative_cd.c static int test_chdir (const vfs_path_t * vpath);
vpath              53 tests/lib/vfs/relative_cd.c test_chdir (const vfs_path_t *vpath)
vpath              55 tests/lib/vfs/relative_cd.c     test_chdir__vpath__captured = vfs_path_clone (vpath);
vpath             134 tests/lib/vfs/relative_cd.c     vfs_path_t *vpath;
vpath             139 tests/lib/vfs/relative_cd.c     vpath = vfs_path_from_str_flags (data->input_string, data->input_flags);
vpath             142 tests/lib/vfs/relative_cd.c     actual_result = mc_chdir (vpath);
vpath             149 tests/lib/vfs/relative_cd.c         element_path = vfs_path_get_last_path_str (vpath);
vpath             151 tests/lib/vfs/relative_cd.c         vfs_path_free (vpath, TRUE);
vpath             168 tests/lib/vfs/relative_cd.c     vfs_path_t *vpath, *last_vpath;
vpath             173 tests/lib/vfs/relative_cd.c     vpath = vfs_path_from_str ("/test1://some.host/dir");
vpath             174 tests/lib/vfs/relative_cd.c     path_element = vfs_path_element_clone (vfs_path_get_by_index (vpath, -1));
vpath             175 tests/lib/vfs/relative_cd.c     vfs_path_free (vpath, TRUE);
vpath             172 tests/lib/vfs/vfs_path_string_convert.c     vfs_path_t *vpath;
vpath             177 tests/lib/vfs/vfs_path_string_convert.c     vpath = vfs_path_from_str_flags (data->input_string, VPF_USE_DEPRECATED_PARSER);
vpath             180 tests/lib/vfs/vfs_path_string_convert.c     vpath_len = vfs_path_elements_count (vpath);
vpath             181 tests/lib/vfs/vfs_path_string_convert.c     actual_result = vfs_path_as_str (vpath);
vpath             182 tests/lib/vfs/vfs_path_string_convert.c     path_element = vfs_path_get_by_index (vpath, -1);
vpath             190 tests/lib/vfs/vfs_path_string_convert.c     vfs_path_free (vpath, TRUE);
vpath             261 tests/lib/vfs/vfs_path_string_convert.c     vfs_path_t *vpath;
vpath             263 tests/lib/vfs/vfs_path_string_convert.c     vpath = vfs_path_from_str_flags (data->input_string, VPF_USE_DEPRECATED_PARSER);
vpath             266 tests/lib/vfs/vfs_path_string_convert.c     actual_result = vfs_path_to_str_elements_count (vpath, data->element_index);
vpath             272 tests/lib/vfs/vfs_path_string_convert.c     vfs_path_free (vpath, TRUE);
vpath             289 tests/lib/vfs/vfs_path_string_convert.c     vfs_path_t *vpath;
vpath             293 tests/lib/vfs/vfs_path_string_convert.c     vpath =
vpath             297 tests/lib/vfs/vfs_path_string_convert.c     result = vfs_path_as_str (vpath);
vpath             298 tests/lib/vfs/vfs_path_string_convert.c     element = vfs_path_get_by_index (vpath, -1);
vpath             305 tests/lib/vfs/vfs_path_string_convert.c     vfs_path_free (vpath, TRUE);
vpath              48 tests/lib/vfs/vfs_s_get_path.c test1_mock_open_archive (struct vfs_s_super *super, const vfs_path_t *vpath,
vpath              53 tests/lib/vfs/vfs_s_get_path.c     mctest_assert_str_eq (vfs_path_as_str (vpath), "/" ETALON_VFS_URL_NAME ARCH_NAME);
vpath              55 tests/lib/vfs/vfs_s_get_path.c     super->name = g_strdup (vfs_path_as_str (vpath));
vpath              65 tests/lib/vfs/vfs_s_get_path.c                          const vfs_path_t *vpath, void *cookie)
vpath              73 tests/lib/vfs/vfs_s_get_path.c     path = vfs_path_get_last_path_str (vpath);
vpath             131 tests/lib/vfs/vfs_s_get_path.c     vfs_path_t *vpath =
vpath             135 tests/lib/vfs/vfs_s_get_path.c     result = vfs_s_get_path (vpath, &archive, 0);
vpath             141 tests/lib/vfs/vfs_s_get_path.c     g_free (vpath);
vpath              53 tests/lib/vfs/vfs_setup_cwd.c mc_stat (const vfs_path_t *vpath, struct stat *my_stat)
vpath              55 tests/lib/vfs/vfs_setup_cwd.c     (void) vpath;
vpath              44 tests/src/execute__common.c vfs_file_is_local (const vfs_path_t *vpath)
vpath              46 tests/src/execute__common.c     g_ptr_array_add (vfs_file_is_local__vpath__captured, vfs_path_clone (vpath));
vpath             182 tests/src/execute__common.c mc_stat (const vfs_path_t *vpath, struct stat *stat_ignored)
vpath             186 tests/src/execute__common.c         g_ptr_array_add (mc_stat__vpath__captured, vfs_path_clone (vpath));
vpath              56 tests/src/filemanager/examine_cd.c sync_tree (const vfs_path_t *vpath)
vpath              58 tests/src/filemanager/examine_cd.c     (void) vpath;