path              122 lib/lock.c         elpath = vfs_path_get_by_index (fname_vpath, 0)->path;
path              212 lib/lock.c         elpath = vfs_path_get_by_index (fname_vpath, 0)->path;
path              288 lib/lock.c         elpath = vfs_path_get_by_index (fname_vpath, 0)->path;
path               68 lib/shell.c            mc_shell->path = g_strdup ("/bin/bash");
path               70 lib/shell.c            mc_shell->path = g_strdup ("/bin/ash");
path               72 lib/shell.c            mc_shell->path = g_strdup ("/bin/dash");
path               74 lib/shell.c            mc_shell->path = g_strdup ("/bin/busybox");
path               76 lib/shell.c            mc_shell->path = g_strdup ("/bin/zsh");
path               78 lib/shell.c            mc_shell->path = g_strdup ("/bin/tcsh");
path               80 lib/shell.c            mc_shell->path = g_strdup ("/bin/csh");
path               90 lib/shell.c            mc_shell->path = g_strdup ("/bin/sh");
path              134 lib/shell.c            mc_shell->path = shell_name;
path              145 lib/shell.c        if (strstr (mc_shell->path, "/zsh") != NULL || strstr (mc_shell->real_path, "/zsh") != NULL
path              152 lib/shell.c        else if (strstr (mc_shell->path, "/tcsh") != NULL
path              159 lib/shell.c        else if (strstr (mc_shell->path, "/csh") != NULL
path              165 lib/shell.c        else if (strstr (mc_shell->path, "/fish") != NULL
path              171 lib/shell.c        else if (strstr (mc_shell->path, "/dash") != NULL
path              188 lib/shell.c            mc_shell->name = mc_shell->path;
path              200 lib/shell.c        if (strstr (mc_shell->path, "/bash") != NULL || getenv ("BASH") != NULL)
path              205 lib/shell.c        else if (strstr (mc_shell->path, "/sh") != NULL || getenv ("SH") != NULL)
path              210 lib/shell.c        else if (strstr (mc_shell->path, "/ash") != NULL || getenv ("ASH") != NULL)
path              233 lib/shell.c        mc_shell->real_path = mc_realpath (mc_shell->path, rp_shell);
path              257 lib/shell.c            g_free (mc_global.shell->path);
path               30 lib/shell.h        char *path;
path              326 lib/util.c     path_trunc (const char *path, size_t trunc_len)
path              332 lib/util.c         vpath = vfs_path_from_str (path);
path              165 lib/util.h     const char *path_trunc (const char *path, size_t trunc_len);
path              236 lib/util.h     void canonicalize_pathname_custom (char *path, canon_path_flags_t flags);
path              238 lib/util.h     char *mc_realpath (const char *path, char *resolved_path);
path              311 lib/util.h     canonicalize_pathname (char *path)
path              313 lib/util.h         canonicalize_pathname_custom (path, CANON_PATH_ALL);
path              767 lib/utilunix.c canonicalize_pathname_custom (char *path, canon_path_flags_t flags)
path              770 lib/utilunix.c     char *lpath = path;         /* path without leading UNC part */
path              774 lib/utilunix.c     if ((flags & CANON_PATH_GUARDUNC) != 0 && IS_PATH_SEP (path[0]) && IS_PATH_SEP (path[1]))
path              776 lib/utilunix.c         for (p = path + 2; p[0] != '\0' && !IS_PATH_SEP (p[0]); p++)
path              778 lib/utilunix.c         if (IS_PATH_SEP (p[0]) && p > path + 2)
path              990 lib/utilunix.c mc_realpath (const char *path, char *resolved_path)
path              993 lib/utilunix.c     const char *p = path;
path             1012 lib/utilunix.c             path = p;
path             1018 lib/utilunix.c     return realpath (path, resolved_path);
path             1032 lib/utilunix.c         if (strlen (path) >= PATH_MAX - 2)
path             1038 lib/utilunix.c         strcpy (copy_path, path);
path             1039 lib/utilunix.c         path = copy_path;
path             1042 lib/utilunix.c         if (!IS_PATH_SEP (*path))
path             1061 lib/utilunix.c             path++;
path             1064 lib/utilunix.c         while (*path != '\0')
path             1067 lib/utilunix.c             if (IS_PATH_SEP (*path))
path             1069 lib/utilunix.c                 path++;
path             1072 lib/utilunix.c             if (*path == '.')
path             1075 lib/utilunix.c                 if (path[1] == '\0' || IS_PATH_SEP (path[1]))
path             1077 lib/utilunix.c                     path++;
path             1080 lib/utilunix.c                 if (path[1] == '.')
path             1082 lib/utilunix.c                     if (path[2] == '\0' || IS_PATH_SEP (path[2]))
path             1084 lib/utilunix.c                         path += 2;
path             1096 lib/utilunix.c             while (*path != '\0' && !IS_PATH_SEP (*path))
path             1098 lib/utilunix.c                 if (path > max_path)
path             1103 lib/utilunix.c                 *new_path++ = *path++;
path             1138 lib/utilunix.c                 if (strlen (path) + n >= PATH_MAX - 2)
path             1144 lib/utilunix.c                 strcat (link_path, path);
path             1146 lib/utilunix.c                 path = copy_path;
path             1224 lib/utilunix.c     GString *path;
path             1230 lib/utilunix.c     path = g_string_new ("");
path             1252 lib/utilunix.c             g_string_append (path, start);
path             1254 lib/utilunix.c                 g_string_append_c (path, PATH_SEP);
path             1262 lib/utilunix.c         g_string_prepend_c (path, PATH_SEP);
path             1264 lib/utilunix.c     ret = g_string_free (path, FALSE);
path              108 lib/vfs/direntry.c vfs_s_automake (struct vfs_class *me, struct vfs_s_inode *dir, char *path, int flags)
path              113 lib/vfs/direntry.c     sep = strchr (path, PATH_SEP);
path              117 lib/vfs/direntry.c     res = vfs_s_generate_entry (me, path, dir, (flags & FL_MKDIR) != 0 ? (0777 | S_IFDIR) : 0777);
path              182 lib/vfs/direntry.c     char *path = pathref;
path              185 lib/vfs/direntry.c     canonicalize_pathname_custom (path, CANON_PATH_ALL & (~CANON_PATH_REMDOUBLEDOTS));
path              191 lib/vfs/direntry.c         while (IS_PATH_SEP (*path))     /* Strip leading '/' */
path              192 lib/vfs/direntry.c             path++;
path              194 lib/vfs/direntry.c         if (path[0] == '\0')
path              200 lib/vfs/direntry.c         for (pseg = 0; path[pseg] != '\0' && !IS_PATH_SEP (path[pseg]); pseg++)
path              206 lib/vfs/direntry.c             if (strlen (ent->name) == pseg && strncmp (ent->name, path, pseg) == 0)
path              214 lib/vfs/direntry.c             ent = vfs_s_automake (me, root, path, flags);
path              221 lib/vfs/direntry.c         path += pseg;
path              225 lib/vfs/direntry.c                                      strchr (path, PATH_SEP) != NULL ? LINK_FOLLOW : follow);
path              242 lib/vfs/direntry.c     char *const path = g_strdup (a_path);
path              249 lib/vfs/direntry.c     canonicalize_pathname_custom (path, CANON_PATH_ALL & (~CANON_PATH_REMDOUBLEDOTS));
path              256 lib/vfs/direntry.c         dirname = g_path_get_dirname (path);
path              257 lib/vfs/direntry.c         name = g_path_get_basename (path);
path              262 lib/vfs/direntry.c         g_free (path);
path              266 lib/vfs/direntry.c     iter = g_queue_find_custom (root->subdir, path, (GCompareFunc) vfs_s_entry_compare);
path              272 lib/vfs/direntry.c         vfs_print_message (_("Directory cache expired for %s"), path);
path              283 lib/vfs/direntry.c         ent = vfs_s_new_entry (me, path, ino);
path              284 lib/vfs/direntry.c         if (VFS_SUBCLASS (me)->dir_load (me, ino, path) == -1)
path              287 lib/vfs/direntry.c             g_free (path);
path              293 lib/vfs/direntry.c         iter = g_queue_find_custom (root->subdir, path, (GCompareFunc) vfs_s_entry_compare);
path              302 lib/vfs/direntry.c         g_free (path);
path              306 lib/vfs/direntry.c     g_free (path);
path             1094 lib/vfs/direntry.c                   const char *path, int follow, int flags)
path             1098 lib/vfs/direntry.c     if (((me->flags & VFSF_REMOTE) == 0) && (*path == '\0'))
path             1101 lib/vfs/direntry.c     ent = VFS_SUBCLASS (me)->find_entry (me, super->root, path, follow, flags);
path             1183 lib/vfs/direntry.c     if (path_element->path != NULL)
path             1184 lib/vfs/direntry.c         retval = path_element->path;
path             1253 lib/vfs/direntry.c         char *path;
path             1255 lib/vfs/direntry.c         path = g_strdup (ino->ent->name);
path             1265 lib/vfs/direntry.c             newpath = g_strconcat (ino->ent->name, PATH_SEP_STR, path, (char *) NULL);
path             1266 lib/vfs/direntry.c             g_free (path);
path             1267 lib/vfs/direntry.c             path = newpath;
path             1269 lib/vfs/direntry.c         return path;
path              713 lib/vfs/interface.c         if (*path_element->path != '\0')
path              717 lib/vfs/interface.c             p = strchr (path_element->path, 0) - 1;
path              718 lib/vfs/interface.c             if (IS_PATH_SEP (*p) && p > path_element->path)
path              729 lib/vfs/interface.c                 g_free (super->path_element->path);
path              730 lib/vfs/interface.c                 super->path_element->path = g_strdup (path_element->path);
path               63 lib/vfs/path.c path_magic (const char *path)
path               67 lib/vfs/path.c     return (stat (path, &buf) != 0);
path               85 lib/vfs/path.c _vfs_split_with_semi_skip_count (char *path, const char **inpath, const char **op,
path               92 lib/vfs/path.c     if (path == NULL)
path               95 lib/vfs/path.c     semi = strrstr_skip_count (path, "#", skip_count);
path               97 lib/vfs/path.c     if ((semi == NULL) || (!path_magic (path)))
path              126 lib/vfs/path.c     ret = _vfs_split_with_semi_skip_count (path, inpath, op, skip_count + 1);
path              138 lib/vfs/path.c vfs_canon (const char *path)
path              142 lib/vfs/path.c     if (path == NULL)
path              145 lib/vfs/path.c     if (!IS_PATH_SEP (*path))
path              151 lib/vfs/path.c         if (g_str_has_prefix (path, VFS_ENCODING_PREFIX))
path              157 lib/vfs/path.c             local = mc_build_filename (PATH_SEP_STR, path, (char *) NULL);
path              164 lib/vfs/path.c             local = mc_build_filename (curr_dir, path, (char *) NULL);
path              173 lib/vfs/path.c         result = g_strdup (path);
path              192 lib/vfs/path.c vfs_get_encoding (const char *path, ssize_t len)
path              197 lib/vfs/path.c     semi = g_strrstr_len (path, len, VFS_ENCODING_PREFIX);
path              201 lib/vfs/path.c     if (semi == path || IS_PATH_SEP (semi[-1]))
path              212 lib/vfs/path.c     return vfs_get_encoding (path, semi - path);
path              238 lib/vfs/path.c vfs_path_url_split (vfs_path_element_t * path_element, const char *path)
path              245 lib/vfs/path.c     pcopy = g_strdup (path);
path              373 lib/vfs/path.c vfs_path_from_str_deprecated_parser (char *path)
path              382 lib/vfs/path.c     while ((class = _vfs_split_with_semi_skip_count (path, &local, &op, 0)) != NULL)
path              389 lib/vfs/path.c         element->path = vfs_translate_path_n (local);
path              408 lib/vfs/path.c         g_array_prepend_val (vpath->path, element);
path              410 lib/vfs/path.c     if (path[0] != '\0')
path              414 lib/vfs/path.c         element->path = vfs_translate_path_n (path);
path              417 lib/vfs/path.c         element->encoding = vfs_get_encoding (path, -1);
path              421 lib/vfs/path.c         g_array_prepend_val (vpath->path, element);
path              437 lib/vfs/path.c vfs_path_from_str_uri_parser (char *path)
path              444 lib/vfs/path.c     vpath->relative = path != NULL && !IS_PATH_SEP (*path);
path              446 lib/vfs/path.c     while ((url_delimiter = g_strrstr (path, VFS_PATH_URL_DELIMITER)) != NULL)
path              451 lib/vfs/path.c         while (real_vfs_prefix_start > path && !IS_PATH_SEP (*real_vfs_prefix_start))
path              473 lib/vfs/path.c                 element->path = g_strdup ("");
path              477 lib/vfs/path.c                 element->path = vfs_translate_path_n (slash_pointer + 1);
path              487 lib/vfs/path.c             element->path = vfs_translate_path_n (url_delimiter);
path              496 lib/vfs/path.c         g_array_prepend_val (vpath->path, element);
path              498 lib/vfs/path.c         if ((real_vfs_prefix_start > path && IS_PATH_SEP (*real_vfs_prefix_start)) ||
path              499 lib/vfs/path.c             (real_vfs_prefix_start == path && !IS_PATH_SEP (*real_vfs_prefix_start)))
path              505 lib/vfs/path.c     if (path[0] != '\0')
path              509 lib/vfs/path.c         element->path = vfs_translate_path_n (path);
path              511 lib/vfs/path.c         element->encoding = vfs_get_encoding (path, -1);
path              515 lib/vfs/path.c         g_array_prepend_val (vpath->path, element);
path              683 lib/vfs/path.c             str_vfs_convert_from (element->dir.converter, element->path, recode_buffer);
path              690 lib/vfs/path.c             vfs_append_from_path (element->path, is_relative);
path              729 lib/vfs/path.c     char *path;
path              735 lib/vfs/path.c         path = vfs_canon (path_str);
path              737 lib/vfs/path.c         path = g_strdup (path_str);
path              739 lib/vfs/path.c     if (path == NULL)
path              742 lib/vfs/path.c     if ((flags & VPF_USE_DEPRECATED_PARSER) != 0 && vfs_path_is_str_path_deprecated (path))
path              743 lib/vfs/path.c         vpath = vfs_path_from_str_deprecated_parser (path);
path              745 lib/vfs/path.c         vpath = vfs_path_from_str_uri_parser (path);
path              748 lib/vfs/path.c     g_free (path);
path              781 lib/vfs/path.c     vpath->path = g_array_new (FALSE, TRUE, sizeof (vfs_path_element_t *));
path              798 lib/vfs/path.c     return (vpath != NULL && vpath->path != NULL) ? vpath->path->len : 0;
path              811 lib/vfs/path.c     g_array_append_val (vpath->path, path_element);
path              851 lib/vfs/path.c     return g_array_index (vpath->path, vfs_path_element_t *, element_index);
path              873 lib/vfs/path.c     new_element->path = g_strdup (element->path);
path              905 lib/vfs/path.c     g_free (element->path);
path              945 lib/vfs/path.c         g_array_append_val (new_vpath->path, path_element);
path              980 lib/vfs/path.c     g_array_free (vpath->path, TRUE);
path             1016 lib/vfs/path.c     vpath->path = g_array_remove_index (vpath->path, element_index);
path             1139 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "path", element->path);
path             1208 lib/vfs/path.c         element->path = mc_config_get_string_raw (cpath, groupname, "path", NULL);
path             1223 lib/vfs/path.c         vpath->path = g_array_append_val (vpath->path, element);
path             1333 lib/vfs/path.c             g_array_append_val (ret_vpath->path, path_element);
path             1371 lib/vfs/path.c         for (prev_token = element->path; (token = strchr (prev_token, PATH_SEP)) != NULL;
path             1437 lib/vfs/path.c         path_tokens = g_strsplit (element->path, PATH_SEP_STR, -1);
path             1567 lib/vfs/path.c     if (!IS_PATH_SEP (*element->path))
path             1570 lib/vfs/path.c     g_string_append (pretty_path, element->path);
path               29 lib/vfs/path.h     GArray *path;
path               40 lib/vfs/path.h     char *path;
path               63 lib/vfs/path.h char *vfs_path_free (vfs_path_t * path, gboolean free_str);
path               64 lib/vfs/path.h int vfs_path_elements_count (const vfs_path_t * path);
path               66 lib/vfs/path.h char *vfs_path_to_str_elements_count (const vfs_path_t * path, int elements_count);
path               78 lib/vfs/path.h const vfs_path_element_t *vfs_path_get_by_index (const vfs_path_t * path, int element_index);
path              117 lib/vfs/path.h     return (element != NULL) ? element->path : NULL;
path              239 lib/vfs/utilvfs.c vfs_url_split (const char *path, int default_port, vfs_url_flags_t flags)
path              251 lib/vfs/utilvfs.c     pcopy_len = strlen (path);
path              252 lib/vfs/utilvfs.c     pcopy = g_strndup (path, pcopy_len);
path              263 lib/vfs/utilvfs.c             path_element->path = g_strdup (PATH_SEP_STR);
path              266 lib/vfs/utilvfs.c             path_element->path = g_strndup (dir, pcopy_len - (size_t) (dir - pcopy));
path               42 lib/vfs/utilvfs.h vfs_path_element_t *vfs_url_split (const char *path, int default_port, vfs_url_flags_t flags);
path              119 lib/vfs/vfs.c  _vfs_translate_path (const char *path, int size, GIConv defcnv, GString * buffer)
path              128 lib/vfs/vfs.c      size = (size > 0) ? size : (signed int) strlen (path);
path              131 lib/vfs/vfs.c      semi = g_strrstr_len (path, size, VFS_ENCODING_PREFIX);
path              132 lib/vfs/vfs.c      if (semi != NULL && (semi == path || IS_PATH_SEP (semi[-1])))
path              140 lib/vfs/vfs.c          ms = semi - path;
path              142 lib/vfs/vfs.c          state = _vfs_translate_path (path, ms, defcnv, buffer);
path              151 lib/vfs/vfs.c          if (slash - path >= size)
path              157 lib/vfs/vfs.c          if (semi + ms > path + size)
path              158 lib/vfs/vfs.c              ms = path + size - semi;
path              168 lib/vfs/vfs.c                  state = str_vfs_convert_to (coder, slash + 1, path + size - slash - 1, buffer);
path              179 lib/vfs/vfs.c          state = str_vfs_convert_to (defcnv, path, size, buffer);
path              185 lib/vfs/vfs.c      g_string_assign (buffer, path);
path              365 lib/vfs/vfs.c  vfs_translate_path (const char *path)
path              370 lib/vfs/vfs.c      state = _vfs_translate_path (path, -1, str_cnv_from_term, vfs_str_buffer);
path              377 lib/vfs/vfs.c  vfs_translate_path_n (const char *path)
path              381 lib/vfs/vfs.c      result = vfs_translate_path (path);
path              155 lib/vfs/vfs.h      int (*which) (struct vfs_class * me, const char *path);
path              265 lib/vfs/vfs.h  const char *vfs_translate_path (const char *path);
path              267 lib/vfs/vfs.h  char *vfs_translate_path_n (const char *path);
path              269 lib/vfs/vfs.h  void vfs_stamp_path (const vfs_path_t * path);
path              142 lib/vfs/xdirentry.h                                        const char *path, int follow, int flags);
path              143 lib/vfs/xdirentry.h     int (*dir_load) (struct vfs_class * me, struct vfs_s_inode * ino, const char *path);
path              145 lib/vfs/xdirentry.h     int (*file_store) (struct vfs_class * me, vfs_file_handler_t * fh, char *path, char *localname);
path              173 lib/vfs/xdirentry.h                                       const char *path, int follow, int flags);
path              562 lib/widget/input_complete.c     static char *path = NULL;
path              600 lib/widget/input_complete.c             if (path == NULL)
path              602 lib/widget/input_complete.c                 path = g_strdup (getenv ("PATH"));
path              603 lib/widget/input_complete.c                 if (path != NULL)
path              605 lib/widget/input_complete.c                     p = path;
path              651 lib/widget/input_complete.c         if (path == NULL)
path              653 lib/widget/input_complete.c         cur_path = path;
path              681 lib/widget/input_complete.c         MC_PTR_FREE (path);
path               87 src/clipboard.c         my_system (EXECUTE_AS_SHELL, mc_global.shell->path, cmd);
path              139 src/diffviewer/ydiff.c     from_file_name = vfs_path_get_by_index (from_file_name_vpath, -1)->path;
path             2767 src/diffviewer/ydiff.c     char *path;
path             2779 src/diffviewer/ydiff.c     path = vfs_path_to_str_flags (vpath, 0, VPF_STRIP_HOME | VPF_STRIP_PASSWORD);
path             2781 src/diffviewer/ydiff.c     buf = str_term_trim (path, filename_width);
path             2788 src/diffviewer/ydiff.c     g_free (path);
path              444 src/editor/edit.c             && *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) != '\0')
path              475 src/editor/edit.c         || *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) == '\0')
path              508 src/editor/edit.c         || *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) == '\0')
path             1827 src/editor/edit.c     writename = name_quote (path_element->path, FALSE);
path              152 src/editor/editcmd.c     start_filename = vpath_element->path;
path              313 src/editor/editcmd.c         file = (FILE *) fopen (path_element->path, "w");
path              323 src/editor/editcmd.c             msg = g_strdup_printf (_("Cannot open file for writing: %s"), path_element->path);
path              345 src/editor/editcmd.c         tmp_store_filename = last_vpath_element->path;
path              346 src/editor/editcmd.c         last_vpath_element->path = g_strdup_printf ("%s%s", tmp_store_filename, option_backup_ext);
path              418 src/editor/etags.c     char *path = NULL;
path              433 src/editor/etags.c     path = g_strconcat (ptr, PATH_SEP_STR, (char *) NULL);
path              439 src/editor/etags.c         ptr = g_path_get_dirname (path);
path              440 src/editor/etags.c         g_free (path);
path              441 src/editor/etags.c         path = ptr;
path              443 src/editor/etags.c         tagfile = mc_build_filename (path, TAGS_NAME, (char *) NULL);
path              447 src/editor/etags.c     while (strcmp (path, PATH_SEP_STR) != 0);
path              451 src/editor/etags.c         def_hash = etags_set_definition_hash (tagfile, path, match_expr->str);
path              454 src/editor/etags.c     g_free (path);
path              435 src/execute.c              do_execute (mc_global.shell->path, cmd ? cmd : command, flags | EXECUTE_AS_SHELL);
path              441 src/execute.c          do_execute (mc_global.shell->path, cmd ? cmd : command, flags | EXECUTE_AS_SHELL);
path              506 src/execute.c              my_system (EXECUTE_INTERNAL, mc_global.shell->path, NULL);
path               86 src/filemanager/cd.c     char *path_tilde, *path;
path               90 src/filemanager/cd.c     path = strutils_shell_unescape (_path);
path               91 src/filemanager/cd.c     path_tilde = tilde_expand (path);
path               92 src/filemanager/cd.c     g_free (path);
path              170 src/filemanager/cd.c handle_cdpath (const char *path)
path              175 src/filemanager/cd.c     if (!IS_PATH_SEP (*path))
path              197 src/filemanager/cd.c                 r_vpath = vfs_path_build_filename (p, path, (char *) NULL);
path              220 src/filemanager/cd.c cd_to (const char *path)
path              230 src/filemanager/cd.c     p = g_strstrip (g_strdup (path));
path              244 src/filemanager/cd.c                 strlen (vfs_path_get_by_index (current_panel->cwd_vpath, 0)->path) > 1)
path               18 src/filemanager/cd.h void cd_to (const char *path);
path             1342 src/filemanager/cmd.c     const char *path;
path             1345 src/filemanager/cmd.c     path = vfs_path_as_str (vpath);
path             1348 src/filemanager/cmd.c         message (D_NORMAL, _("Setup"), _("Setup saved to %s"), path);
path             1350 src/filemanager/cmd.c         message (D_ERROR, _("Setup"), _("Unable to save setup to %s"), path);
path              215 src/filemanager/dir.c         const char *path;
path              217 src/filemanager/dir.c         path = vfs_path_get_by_index (vpath, 0)->path;
path              218 src/filemanager/dir.c         if (path != NULL && *path != '\0')
path              606 src/filemanager/dir.c handle_path (const char *path, struct stat * buf1, gboolean * link_to_dir, gboolean * stale_link)
path              610 src/filemanager/dir.c     if (DIR_IS_DOT (path) || DIR_IS_DOTDOT (path))
path              613 src/filemanager/dir.c     vpath = vfs_path_from_str (path);
path              621 src/filemanager/dir.c         tree_store_mark_checked (path);
path              769 src/filemanager/dir.c     tmp_path = vfs_path_get_by_index (vpath, 0)->path;
path               89 src/filemanager/dir.h gboolean handle_path (const char *path, struct stat *buf1, gboolean * link_to_dir,
path             3026 src/filemanager/file.c         char *path;
path             3036 src/filemanager/file.c         path = mc_build_filename (s, next->d_name, (char *) NULL);
path             3037 src/filemanager/file.c         tmp_vpath = vfs_path_from_str (path);
path             3052 src/filemanager/file.c                 copy_dir_dir (tctx, ctx, path, mdpath, FALSE, FALSE, do_delete, parent_dirs);
path             3059 src/filemanager/file.c             dest_file = mc_build_filename (d, x_basename (path), (char *) NULL);
path             3060 src/filemanager/file.c             return_status = copy_file_file (tctx, ctx, path, dest_file);
path             3064 src/filemanager/file.c         g_free (path);
path               42 src/filemanager/file.h gboolean file_is_symlink_to_dir (const vfs_path_t * path, struct stat *st, gboolean * stale_link);
path               38 src/filemanager/filegui.h gboolean file_progress_show_deleting (file_op_context_t * ctx, const char *path, size_t * count);
path              437 src/filemanager/filemanager.c     char *path;
path              443 src/filemanager/filemanager.c     title_path_prepare (&path, &login);
path              445 src/filemanager/filemanager.c     p = g_strdup_printf ("%s [%s]:%s", _("Panels:"), login, path);
path              446 src/filemanager/filemanager.c     g_free (path);
path              448 src/filemanager/filemanager.c     path = g_strdup (str_trunc (p, len - 4));
path              451 src/filemanager/filemanager.c     return path;
path               66 src/filemanager/filenot.c     if (IS_PATH_SEP (*vfs_path_get_by_index (vpath, 0)->path))
path              128 src/filemanager/filenot.c my_rmdir (const char *path)
path              133 src/filemanager/filenot.c     vpath = vfs_path_from_str_flags (path, VPF_NO_CANON);
path               22 src/filemanager/filenot.h int my_rmdir (const char *path);
path              322 src/filemanager/hotlist.c add_name_to_list (const char *path)
path              324 src/filemanager/hotlist.c     listbox_add_item (l_hotlist, LISTBOX_APPEND_AT_END, 0, path, NULL, FALSE);
path             1528 src/filemanager/layout.c title_path_prepare (char **path, char **login)
path             1534 src/filemanager/layout.c     *path =
path             1559 src/filemanager/layout.c         char *path;
path             1562 src/filemanager/layout.c         title_path_prepare (&path, &login);
path             1564 src/filemanager/layout.c         p = g_strdup_printf ("mc [%s]:%s", login, path);
path             1566 src/filemanager/layout.c         g_free (path);
path               94 src/filemanager/layout.h void title_path_prepare (char **path, char **login);
path             1491 src/filemanager/mountlist.c my_statfs (struct my_statfs *myfs_stats, const char *path)
path             1506 src/filemanager/mountlist.c         if (i > len && (strncmp (path, me->me_mountdir, i) == 0) &&
path             1507 src/filemanager/mountlist.c             (entry == NULL || IS_PATH_SEP (path[i]) || path[i] == '\0'))
path               39 src/filemanager/mountlist.h void my_statfs (struct my_statfs *myfs_stats, const char *path);
path             1216 src/filemanager/panel.c         archive_name = strrchr (prev_path_element->path, PATH_SEP);
path             1221 src/filemanager/panel.c             last_vpath = vfs_path_from_str_flags (prev_path_element->path, VPF_NO_CANON);
path             3334 src/filemanager/panel.c         if (strcmp (element->path, "-") == 0)
path             4948 src/filemanager/panel.c         str_vfs_convert_from (converter, path_element->path, tmp_conv);
path             4950 src/filemanager/panel.c         g_free (path_element->path);
path             4951 src/filemanager/panel.c         path_element->path = g_strndup (tmp_conv->str, tmp_conv->len);
path              419 src/subshell/common.c         execl (mc_global.shell->path, "bash", "-rcfile", init_file, (char *) NULL);
path              425 src/subshell/common.c         execl (mc_global.shell->path, "zsh", "-Z", "-g", (char *) NULL);
path              432 src/subshell/common.c         execl (mc_global.shell->path, mc_global.shell->path, (char *) NULL);
path              596 src/usermenu.c menu_file_own (char *path)
path              600 src/usermenu.c     if (stat (path, &st) == 0 && (st.st_uid == 0 || (st.st_uid == geteuid ()) != 0)
path              607 src/usermenu.c                    "Using it may compromise your security"), path);
path               93 src/vfs/extfs/extfs.c     char *path;
path              546 src/vfs/extfs/extfs.c     cmd = g_strconcat (info->path, info->prefix, " list ",
path              699 src/vfs/extfs/extfs.c extfs_which (struct vfs_class *me, const char *path)
path              706 src/vfs/extfs/extfs.c     path_len = strlen (path);
path              714 src/vfs/extfs/extfs.c         if ((strncmp (path, info->prefix, path_len) == 0)
path              808 src/vfs/extfs/extfs.c     return path_element->path;
path              904 src/vfs/extfs/extfs.c         ret_str = g_strdup (path_element->path);
path              939 src/vfs/extfs/extfs.c     cmd = g_strconcat (info->path, info->prefix, str_extfs_cmd,
path              994 src/vfs/extfs/extfs.c         g_strconcat (info->path, info->prefix, " run ", quoted_archive_name, " ", q, (char *) NULL);
path             1043 src/vfs/extfs/extfs.c         local_filename = vfs_path_get_by_index (local_filename_vpath, -1)->path;
path             1593 src/vfs/extfs/extfs.c                 info.path = g_strconcat (dirname, PATH_SEP_STR, (char *) NULL);
path             1608 src/vfs/extfs/extfs.c                     found = strcmp (info.path, p->path) != 0
path             1614 src/vfs/extfs/extfs.c                     g_free (info.path);
path             1669 src/vfs/extfs/extfs.c         g_free (info->path);
path              418 src/vfs/fish/fish.c fish_pipeopen (struct vfs_s_super *super, const char *path, const char *argv[])
path              449 src/vfs/fish/fish.c         execvp (path, (char **) argv);
path             1335 src/vfs/fish/fish.c     qsetto = strutils_shell_escape (vfs_path_get_by_index (vpath1, -1)->path);
path             1745 src/vfs/fish/fish.c                          PATH_SEP_STR, super->path_element->path, (char *) NULL);
path             1827 src/vfs/ftpfs/ftpfs.c         char *path;
path             1830 src/vfs/ftpfs/ftpfs.c         path = g_strconcat (remote_path, PATH_SEP_STR ".", (char *) NULL);
path             1831 src/vfs/ftpfs/ftpfs.c         sock = ftpfs_open_data_connection (me, super, "LIST -la", path, TYPE_ASCII, 0);
path             1832 src/vfs/ftpfs/ftpfs.c         g_free (path);
path             2233 src/vfs/ftpfs/ftpfs.c ftpfs_is_same_dir (struct vfs_class *me, struct vfs_s_super *super, const char *path)
path             2238 src/vfs/ftpfs/ftpfs.c             && strcmp (path, FTP_SUPER (super)->current_dir) == 0);
path               74 src/vfs/local/local.c     fd = open (path_element->path, NO_LINEAR (flags), mode);
path              102 src/vfs/local/local.c         dir = opendir (path_element->path);
path              153 src/vfs/local/local.c     return stat (path_element->path, buf);
path              165 src/vfs/local/local.c     return lstat (path_element->path, buf);
path              167 src/vfs/local/local.c     return statlstat (path_element->path, buf);
path              179 src/vfs/local/local.c     return chmod (path_element->path, mode);
path              190 src/vfs/local/local.c     return chown (path_element->path, owner, group);
path              203 src/vfs/local/local.c     ret = utimensat (AT_FDCWD, path_element->path, *times, AT_SYMLINK_NOFOLLOW);
path              205 src/vfs/local/local.c     ret = utime (path_element->path, times);
path              218 src/vfs/local/local.c     return readlink (path_element->path, buf, size);
path              229 src/vfs/local/local.c     return unlink (path_element->path);
path              241 src/vfs/local/local.c     return symlink (path_element1->path, path_element2->path);
path              282 src/vfs/local/local.c     return rename (path_element1->path, path_element2->path);
path              293 src/vfs/local/local.c     return chdir (path_element->path);
path              304 src/vfs/local/local.c     return mknod (path_element->path, mode, dev);
path              316 src/vfs/local/local.c     return link (path_element1->path, path_element2->path);
path              327 src/vfs/local/local.c     return mkdir (path_element->path, mode);
path              338 src/vfs/local/local.c     return rmdir (path_element->path);
path              364 src/vfs/local/local.c local_which (struct vfs_class *me, const char *path)
path              367 src/vfs/local/local.c     (void) path;
path              195 src/vfs/sfs/sfs.c                 ptr = path_element->path;
path              198 src/vfs/sfs/sfs.c                 ptr = vfs_path_get_by_index (cache_vpath, -1)->path;
path              270 src/vfs/sfs/sfs.c     handle = vfs_mkstemps (&cache_vpath, "sfs", path_element->path);
path              550 src/vfs/sfs/sfs.c sfs_which (struct vfs_class *me, const char *path)
path              559 src/vfs/sfs/sfs.c             if (strcmp (path, sfs_info[i].prefix) == 0)
path              562 src/vfs/sfs/sfs.c         else if (strncmp (path, sfs_info[i].prefix, strlen (sfs_info[i].prefix)) == 0)
path               84 src/vfs/sftpfs/dir.c     fixfname = sftpfs_fix_filename (path_element->path);
path              196 src/vfs/sftpfs/dir.c     fixfname = sftpfs_fix_filename (path_element->path);
path              245 src/vfs/sftpfs/dir.c     fixfname = sftpfs_fix_filename (path_element->path);
path              151 src/vfs/sftpfs/internal.c     fixfname = sftpfs_fix_filename ((*path_element)->path);
path              354 src/vfs/sftpfs/internal.c     fixfname = sftpfs_fix_filename (path_element->path);
path              398 src/vfs/sftpfs/internal.c     ctmp_path = sftpfs_fix_filename (path_element2->path);
path              403 src/vfs/sftpfs/internal.c     path1 = path_element1->path;
path              454 src/vfs/sftpfs/internal.c     fixfname = sftpfs_fix_filename (path_element->path);
path              507 src/vfs/sftpfs/internal.c     fixfname = sftpfs_fix_filename (path_element->path);
path              554 src/vfs/sftpfs/internal.c     fixfname = sftpfs_fix_filename (path_element->path);
path              595 src/vfs/sftpfs/internal.c     ctmp_path = sftpfs_fix_filename (path_element2->path);
path              601 src/vfs/sftpfs/internal.c     fixfname = sftpfs_fix_filename (path_element1->path);
path              160 src/vfs/undelfs/undelfs.c     dirname = path_element->path;
path              611 src/vfs/undelfs/undelfs.c undelfs_getindex (char *path)
path              613 src/vfs/undelfs/undelfs.c     ext2_ino_t inode = atol (path);
path              154 tests/lib/vfs/path_recode.c     mctest_assert_str_eq (element->path, data->expected_element_path);
path              151 tests/lib/vfs/relative_cd.c         mctest_assert_str_eq (element->path, data->expected_element_path);
path               54 tests/lib/vfs/vfs_get_encoding.c     const char *path;
path              130 tests/lib/vfs/vfs_get_encoding.c     actual_encoding = vfs_get_encoding (data->path, -1);
path              188 tests/lib/vfs/vfs_path_string_convert.c     mctest_assert_str_eq (path_element->path, data->expected_element_path);
path              301 tests/lib/vfs/vfs_path_string_convert.c     mctest_assert_str_eq (element->path, "");
path               41 tests/lib/vfs/vfs_prefix_to_class.c test_which (struct vfs_class *me, const char *path)
path               45 tests/lib/vfs/vfs_prefix_to_class.c     if ((strcmp (path, "test_1:") == 0) ||
path               46 tests/lib/vfs/vfs_prefix_to_class.c         (strcmp (path, "test_2:") == 0) ||
path               47 tests/lib/vfs/vfs_prefix_to_class.c         (strcmp (path, "test_3:") == 0) || (strcmp (path, "test_4:") == 0))
path               74 tests/lib/vfs/vfs_s_get_path.c     if (strcmp (ARCH_NAME, path_element->path) != 0)
path              171 tests/lib/vfs/vfs_split.c     char *path;
path              173 tests/lib/vfs/vfs_split.c     path = g_strdup (data->input_string);
path              176 tests/lib/vfs/vfs_split.c     actual_result = _vfs_split_with_semi_skip_count (path, &local, &op, 0);
path              180 tests/lib/vfs/vfs_split.c     mctest_assert_str_eq (path, data->expected_path);
path              183 tests/lib/vfs/vfs_split.c     g_free (path);