filename_vpath 1149 lib/util.c load_file_position (const vfs_path_t *filename_vpath, long *line, long *column, off_t *offset, filename_vpath 1155 lib/util.c const size_t len = vfs_path_len (filename_vpath); filename_vpath 1179 lib/util.c if (strncmp (buf, vfs_path_as_str (filename_vpath), len) != 0) filename_vpath 1240 lib/util.c save_file_position (const vfs_path_t *filename_vpath, long line, long column, off_t offset, filename_vpath 1248 lib/util.c const size_t len = vfs_path_len (filename_vpath); filename_vpath 1278 lib/util.c (f, "%s %ld;%ld;%" PRIuMAX, vfs_path_as_str (filename_vpath), line, column, filename_vpath 1293 lib/util.c if (buf[len] == ' ' && strncmp (buf, vfs_path_as_str (filename_vpath), len) == 0 filename_vpath 246 lib/util.h void load_file_position (const vfs_path_t * filename_vpath, long *line, long *column, filename_vpath 249 lib/util.h void save_file_position (const vfs_path_t * filename_vpath, long line, long column, off_t offset, filename_vpath 83 lib/vfs/interface.c mc_def_getlocalcopy (const vfs_path_t *filename_vpath) filename_vpath 91 lib/vfs/interface.c fdin = mc_open (filename_vpath, O_RDONLY | O_LINEAR); filename_vpath 95 lib/vfs/interface.c fdout = vfs_mkstemps (&tmp_vpath, "vfs", vfs_path_get_last_path_str (filename_vpath)); filename_vpath 116 lib/vfs/interface.c if (mc_stat (filename_vpath, &mystat) != -1) filename_vpath 133 lib/vfs/interface.c mc_def_ungetlocalcopy (const vfs_path_t *filename_vpath, filename_vpath 146 lib/vfs/interface.c if (vfs_path_get_last_path_vfs (filename_vpath)->write == NULL) filename_vpath 152 lib/vfs/interface.c fdout = mc_open (filename_vpath, O_WRONLY | O_TRUNC); filename_vpath 177 lib/vfs/interface.c message (D_ERROR, _("Changes to file lost"), "%s", vfs_path_get_last_path_str (filename_vpath)); filename_vpath 174 src/editor/edit-impl.h const vfs_path_t * filename_vpath); filename_vpath 196 src/editor/edit-impl.h off_t edit_insert_file (WEdit * edit, const vfs_path_t * filename_vpath); filename_vpath 267 src/editor/edit-impl.h edit_reload (WEdit *edit, const vfs_path_t *filename_vpath) filename_vpath 271 src/editor/edit-impl.h edit_arg_init (&arg, (vfs_path_t *) filename_vpath, 0); filename_vpath 195 src/editor/edit.c edit_load_file_fast (edit_buffer_t *buf, const vfs_path_t *filename_vpath) filename_vpath 202 src/editor/edit.c file = mc_open (filename_vpath, O_RDONLY | O_BINARY); filename_vpath 208 src/editor/edit.c g_strdup_printf (_("Cannot open %s for reading"), vfs_path_as_str (filename_vpath)); filename_vpath 229 src/editor/edit.c errmsg = g_strdup_printf (_("Error reading %s"), vfs_path_as_str (filename_vpath)); filename_vpath 242 src/editor/edit.c edit_find_filter (const vfs_path_t *filename_vpath) filename_vpath 244 src/editor/edit.c if (filename_vpath != NULL) filename_vpath 249 src/editor/edit.c s = vfs_path_as_str (filename_vpath); filename_vpath 262 src/editor/edit.c edit_get_filter (const vfs_path_t *filename_vpath) filename_vpath 268 src/editor/edit.c i = edit_find_filter (filename_vpath); filename_vpath 272 src/editor/edit.c quoted_name = name_quote (vfs_path_as_str (filename_vpath), FALSE); filename_vpath 307 src/editor/edit.c check_file_access (WEdit *edit, const vfs_path_t *filename_vpath, struct stat *st) filename_vpath 315 src/editor/edit.c file = mc_open (filename_vpath, O_NONBLOCK | O_RDONLY | O_BINARY, 0666); filename_vpath 322 src/editor/edit.c file = mc_open (filename_vpath, O_NONBLOCK | O_RDONLY | O_BINARY | O_CREAT | O_EXCL, 0666); filename_vpath 326 src/editor/edit.c g_strdup_printf (_("Cannot open %s for reading"), vfs_path_as_str (filename_vpath)); filename_vpath 339 src/editor/edit.c vfs_path_as_str (filename_vpath)); filename_vpath 347 src/editor/edit.c g_strdup_printf (_("\"%s\" is not a regular file"), vfs_path_as_str (filename_vpath)); filename_vpath 373 src/editor/edit.c vfs_path_as_str (filename_vpath)); filename_vpath 414 src/editor/edit.c if (edit_find_filter (edit->filename_vpath) >= 0) filename_vpath 421 src/editor/edit.c if (edit->filename_vpath != NULL) filename_vpath 427 src/editor/edit.c if (!vfs_file_is_local (edit->filename_vpath)) filename_vpath 431 src/editor/edit.c if (!check_file_access (edit, edit->filename_vpath, &edit->stat1)) filename_vpath 447 src/editor/edit.c if (!edit_load_file_fast (&edit->buffer, edit->filename_vpath)) filename_vpath 457 src/editor/edit.c if (edit->filename_vpath != NULL filename_vpath 458 src/editor/edit.c && *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) != '\0') filename_vpath 461 src/editor/edit.c if (edit_insert_file (edit, edit->filename_vpath) < 0) filename_vpath 489 src/editor/edit.c if (edit->filename_vpath == NULL filename_vpath 490 src/editor/edit.c || *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) == '\0') filename_vpath 493 src/editor/edit.c load_file_position (edit->filename_vpath, &line, &column, &offset, &edit->serialized_bookmarks); filename_vpath 523 src/editor/edit.c if (edit->filename_vpath == NULL filename_vpath 524 src/editor/edit.c || *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) == '\0') filename_vpath 528 src/editor/edit.c save_file_position (edit->filename_vpath, edit->buffer.curs_line + 1, edit->curs_col, filename_vpath 648 src/editor/edit.c edit->locked = lock_file (edit->filename_vpath); filename_vpath 1854 src/editor/edit.c edit_get_write_filter (const vfs_path_t *write_name_vpath, const vfs_path_t *filename_vpath) filename_vpath 1861 src/editor/edit.c i = edit_find_filter (filename_vpath); filename_vpath 1992 src/editor/edit.c edit_insert_file (WEdit *edit, const vfs_path_t *filename_vpath) filename_vpath 1998 src/editor/edit.c p = edit_get_filter (filename_vpath); filename_vpath 2044 src/editor/edit.c file = mc_open (filename_vpath, O_RDONLY | O_BINARY); filename_vpath 2245 src/editor/edit.c (void) unlock_file (edit->filename_vpath); filename_vpath 2255 src/editor/edit.c unlink (vfs_path_get_last_path_str (edit->filename_vpath)); filename_vpath 2264 src/editor/edit.c vfs_path_free (edit->filename_vpath, TRUE); filename_vpath 4269 src/editor/edit.c return vfs_path_as_str (edit->filename_vpath); filename_vpath 130 src/editor/editcmd.c edit_save_file (WEdit *edit, const vfs_path_t *filename_vpath) filename_vpath 142 src/editor/editcmd.c vpath_element = vfs_path_get_by_index (filename_vpath, 0); filename_vpath 151 src/editor/editcmd.c real_filename_vpath = vfs_path_append_vpath_new (edit->dir_vpath, filename_vpath, NULL); filename_vpath 153 src/editor/editcmd.c real_filename_vpath = vfs_path_clone (filename_vpath); filename_vpath 399 src/editor/editcmd.c vfs_path_as_str (edit->filename_vpath), "save-as", filename_vpath 440 src/editor/editcmd.c save_lock = lock_file (edit->filename_vpath); filename_vpath 441 src/editor/editcmd.c res = edit_save_file (edit, edit->filename_vpath); filename_vpath 445 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 899 src/editor/editcmd.c vfs_path_free (edit->filename_vpath, TRUE); filename_vpath 900 src/editor/editcmd.c edit->filename_vpath = vfs_path_clone (name_vpath); filename_vpath 929 src/editor/editcmd.c if (!vfs_path_equal (edit->filename_vpath, exp_vpath)) filename_vpath 979 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 982 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 1018 src/editor/editcmd.c if (edit->filename_vpath == NULL) filename_vpath 1030 src/editor/editcmd.c vfs_path_as_str (edit->filename_vpath)); filename_vpath 1263 src/editor/editcmd.c unlock_file (edit->filename_vpath); filename_vpath 1473 src/editor/editcmd.c if (edit->filename_vpath != NULL) filename_vpath 1474 src/editor/editcmd.c fname = vfs_path_as_str (edit->filename_vpath); filename_vpath 200 src/editor/editdraw.c if (edit->filename_vpath != NULL) filename_vpath 202 src/editor/editdraw.c fname = vfs_path_get_last_path_str (edit->filename_vpath); filename_vpath 258 src/editor/editdraw.c if (edit->filename_vpath != NULL) filename_vpath 260 src/editor/editdraw.c fname = vfs_path_get_last_path_str (edit->filename_vpath); filename_vpath 332 src/editor/editwidget.c if (e->filename_vpath == NULL) filename_vpath 337 src/editor/editwidget.c vfs_path_as_str (e->filename_vpath)); filename_vpath 386 src/editor/editwidget.c if (edit->filename_vpath == NULL) filename_vpath 389 src/editor/editwidget.c filename = g_strdup (vfs_path_as_str (edit->filename_vpath)); filename_vpath 75 src/editor/editwidget.h vfs_path_t *filename_vpath; /* Name of the file */ filename_vpath 385 src/editor/etags.c if (edit->filename_vpath != NULL && edit->filename_vpath->relative filename_vpath 387 src/editor/etags.c vpath = vfs_path_append_vpath_new (edit->dir_vpath, edit->filename_vpath, NULL); filename_vpath 389 src/editor/etags.c vpath = vfs_path_clone (edit->filename_vpath); filename_vpath 1530 src/editor/syntax.c if (edit != NULL && edit->filename_vpath == NULL) filename_vpath 1535 src/editor/syntax.c r = edit_read_syntax_file (edit, pnames, f, vfs_path_as_str (edit->filename_vpath), filename_vpath 71 src/execute.c const vfs_path_t * filename_vpath, filename_vpath 181 src/execute.c execute_prepare_with_vfs_arg (const vfs_path_t *filename_vpath, vfs_path_t **localcopy_vpath, filename_vpath 187 src/execute.c if ((filename_vpath == NULL && vfs_file_is_local (vfs_get_raw_current_dir ())) filename_vpath 188 src/execute.c || vfs_file_is_local (filename_vpath)) filename_vpath 192 src/execute.c if (filename_vpath == NULL) filename_vpath 195 src/execute.c *localcopy_vpath = mc_getlocalcopy (filename_vpath); filename_vpath 199 src/execute.c vfs_path_as_str (filename_vpath)); filename_vpath 211 src/execute.c execute_cleanup_with_vfs_arg (const vfs_path_t *filename_vpath, vfs_path_t **localcopy_vpath, filename_vpath 224 src/execute.c mc_ungetlocalcopy (filename_vpath, *localcopy_vpath, *mtime != st.st_mtime); filename_vpath 263 src/execute.c execute_get_external_cmd_opts_from_config (const char *command, const vfs_path_t *filename_vpath, filename_vpath 269 src/execute.c if (filename_vpath == NULL) filename_vpath 272 src/execute.c parameter = g_shell_quote (vfs_path_get_last_path_str (filename_vpath)); filename_vpath 611 src/execute.c execute_with_vfs_arg (const char *command, const vfs_path_t *filename_vpath) filename_vpath 617 src/execute.c if (!execute_prepare_with_vfs_arg (filename_vpath, &localcopy_vpath, &mtime)) filename_vpath 620 src/execute.c do_execute_vpath = (localcopy_vpath == NULL) ? filename_vpath : localcopy_vpath; filename_vpath 624 src/execute.c execute_cleanup_with_vfs_arg (filename_vpath, &localcopy_vpath, &mtime); filename_vpath 638 src/execute.c execute_external_editor_or_viewer (const char *command, const vfs_path_t *filename_vpath, filename_vpath 646 src/execute.c if (!execute_prepare_with_vfs_arg (filename_vpath, &localcopy_vpath, &mtime)) filename_vpath 649 src/execute.c do_execute_vpath = (localcopy_vpath == NULL) ? filename_vpath : localcopy_vpath; filename_vpath 670 src/execute.c execute_cleanup_with_vfs_arg (filename_vpath, &localcopy_vpath, &mtime); filename_vpath 42 src/execute.h void execute_with_vfs_arg (const char *command, const vfs_path_t * filename_vpath); filename_vpath 43 src/execute.h void execute_external_editor_or_viewer (const char *command, const vfs_path_t * filename_vpath, filename_vpath 148 src/filemanager/cmd.c vfs_path_t *filename_vpath; filename_vpath 150 src/filemanager/cmd.c filename_vpath = vfs_path_from_str (fe->fname->str); filename_vpath 151 src/filemanager/cmd.c view_file (filename_vpath, plain_view, use_internal_view); filename_vpath 152 src/filemanager/cmd.c vfs_path_free (filename_vpath, TRUE); filename_vpath 480 src/filemanager/cmd.c view_file_at_line (const vfs_path_t *filename_vpath, gboolean plain_view, gboolean internal, filename_vpath 503 src/filemanager/cmd.c ret = mcview_viewer (NULL, filename_vpath, start_line, search_start, search_end); filename_vpath 523 src/filemanager/cmd.c ret = (regex_command (filename_vpath, view_entry) == 0); filename_vpath 526 src/filemanager/cmd.c ret = mcview_viewer (NULL, filename_vpath, start_line, search_start, search_end); filename_vpath 543 src/filemanager/cmd.c execute_external_editor_or_viewer (viewer, filename_vpath, start_line); filename_vpath 560 src/filemanager/cmd.c view_file (const vfs_path_t *filename_vpath, gboolean plain_view, gboolean internal) filename_vpath 562 src/filemanager/cmd.c return view_file_at_line (filename_vpath, plain_view, internal, 0, 0, 0); filename_vpath 46 src/filemanager/cmd.h gboolean view_file_at_line (const vfs_path_t * filename_vpath, gboolean plain_view, filename_vpath 49 src/filemanager/cmd.h gboolean view_file (const vfs_path_t * filename_vpath, gboolean plain_view, gboolean internal); filename_vpath 129 src/filemanager/ext.c exec_cleanup_file_name (const vfs_path_t *filename_vpath, gboolean has_changed) filename_vpath 141 src/filemanager/ext.c mc_ungetlocalcopy (filename_vpath, localfilecopy_vpath, has_changed); filename_vpath 149 src/filemanager/ext.c exec_get_file_name (const vfs_path_t *filename_vpath) filename_vpath 152 src/filemanager/ext.c return quote_func (vfs_path_get_last_path_str (filename_vpath), FALSE); filename_vpath 157 src/filemanager/ext.c localfilecopy_vpath = mc_getlocalcopy (filename_vpath); filename_vpath 190 src/filemanager/ext.c exec_get_export_variables (const vfs_path_t *filename_vpath) filename_vpath 211 src/filemanager/ext.c text = exec_get_file_name (filename_vpath); filename_vpath 238 src/filemanager/ext.c exec_make_shell_string (const char *lc_data, const vfs_path_t *filename_vpath) filename_vpath 263 src/filemanager/ext.c exec_cleanup_file_name (filename_vpath, FALSE); filename_vpath 326 src/filemanager/ext.c text = exec_get_file_name (filename_vpath); filename_vpath 372 src/filemanager/ext.c exec_extension_view (void *target, char *cmd, const vfs_path_t *filename_vpath, int start_line) filename_vpath 394 src/filemanager/ext.c mcview_viewer (cmd, filename_vpath, start_line, 0, 0); filename_vpath 396 src/filemanager/ext.c mcview_load ((WView *) target, cmd, vfs_path_as_str (filename_vpath), start_line, 0, 0); filename_vpath 432 src/filemanager/ext.c exec_extension (WPanel *panel, void *target, const vfs_path_t *filename_vpath, filename_vpath 449 src/filemanager/ext.c do_local_copy = !vfs_file_is_local (filename_vpath); filename_vpath 451 src/filemanager/ext.c shell_string = exec_make_shell_string (lc_data, filename_vpath); filename_vpath 481 src/filemanager/ext.c export_variables = exec_get_export_variables (filename_vpath); filename_vpath 518 src/filemanager/ext.c exec_extension_view (target, NULL, filename_vpath, start_line); filename_vpath 520 src/filemanager/ext.c exec_extension_view (target, cmd, filename_vpath, start_line); filename_vpath 540 src/filemanager/ext.c exec_cleanup_file_name (filename_vpath, TRUE); filename_vpath 598 src/filemanager/ext.c get_file_type_local (const vfs_path_t *filename_vpath, char *buf, int buflen) filename_vpath 603 src/filemanager/ext.c filename_quoted = name_quote (vfs_path_get_last_path_str (filename_vpath), FALSE); filename_vpath 621 src/filemanager/ext.c get_file_encoding_local (const vfs_path_t *filename_vpath, char *buf, int buflen) filename_vpath 626 src/filemanager/ext.c filename_quoted = name_quote (vfs_path_get_last_path_str (filename_vpath), FALSE); filename_vpath 659 src/filemanager/ext.c regex_check_type (const vfs_path_t *filename_vpath, const char *ptr, gboolean case_insense, filename_vpath 683 src/filemanager/ext.c localfile_vpath = mc_getlocalcopy (filename_vpath); filename_vpath 687 src/filemanager/ext.c vfs_path_as_str (filename_vpath)); filename_vpath 715 src/filemanager/ext.c mc_ungetlocalcopy (filename_vpath, localfile_vpath, FALSE); filename_vpath 898 src/filemanager/ext.c regex_command_for (void *target, const vfs_path_t *filename_vpath, const char *action, filename_vpath 915 src/filemanager/ext.c if (filename_vpath == NULL) filename_vpath 931 src/filemanager/ext.c mc_stat (filename_vpath, &mystat); filename_vpath 933 src/filemanager/ext.c filename = vfs_path_get_last_path_str (filename_vpath); filename_vpath 964 src/filemanager/ext.c && mc_search (pattern, DEFAULT_CHARSET, vfs_path_as_str (filename_vpath), filename_vpath 981 src/filemanager/ext.c regex_check_type (filename_vpath, pattern, ignore_case, &have_type, &mcerror) filename_vpath 1088 src/filemanager/ext.c sv = exec_extension (current_panel, target, filename_vpath, action_value, filename_vpath 17 src/filemanager/ext.h int regex_command_for (void *target, const vfs_path_t * filename_vpath, const char *action, filename_vpath 28 src/filemanager/ext.h regex_command (const vfs_path_t *filename_vpath, const char *action) filename_vpath 30 src/filemanager/ext.h return regex_command_for (NULL, filename_vpath, action, NULL); filename_vpath 1949 src/filemanager/find.c vfs_path_t *filename_vpath; filename_vpath 1951 src/filemanager/find.c filename_vpath = vfs_path_from_str (filename); filename_vpath 1952 src/filemanager/find.c panel_cd (panel, filename_vpath, cd_exact); filename_vpath 1953 src/filemanager/find.c vfs_path_free (filename_vpath, TRUE); filename_vpath 247 src/viewer/actions_cmd.c if ((view->filename_vpath != NULL) filename_vpath 248 src/viewer/actions_cmd.c && (*(vfs_path_get_last_path_str (view->filename_vpath)) != '\0') filename_vpath 250 src/viewer/actions_cmd.c view->locked = lock_file (view->filename_vpath); filename_vpath 299 src/viewer/actions_cmd.c fname = x_basename (vfs_path_as_str (view->filename_vpath)); filename_vpath 164 src/viewer/display.c view->filename_vpath != NULL ? filename_vpath 165 src/viewer/display.c vfs_path_get_last_path_str (view->filename_vpath) : view->command != NULL ? filename_vpath 389 src/viewer/hex.c g_assert (view->filename_vpath != NULL); filename_vpath 391 src/viewer/hex.c fp = mc_open (view->filename_vpath, O_WRONLY); filename_vpath 412 src/viewer/hex.c view->locked = unlock_file (view->filename_vpath); filename_vpath 459 src/viewer/hex.c view->locked = unlock_file (view->filename_vpath); filename_vpath 94 src/viewer/internal.h vfs_path_t *filename_vpath; /* Name of the file */ filename_vpath 82 src/viewer/lib.c filename = g_strdup (vfs_path_as_str (view->filename_vpath)); filename_vpath 156 src/viewer/lib.c view->filename_vpath = NULL; filename_vpath 207 src/viewer/lib.c if (mcview_remember_file_position && view->filename_vpath != NULL) filename_vpath 209 src/viewer/lib.c save_file_position (view->filename_vpath, -1, 0, filename_vpath 220 src/viewer/lib.c vfs_path_free (view->filename_vpath, TRUE); filename_vpath 221 src/viewer/lib.c view->filename_vpath = NULL; filename_vpath 388 src/viewer/lib.c view_filename = vfs_path_as_str (view->filename_vpath); filename_vpath 293 src/viewer/mcviewer.c view->filename_vpath = vfs_path_from_str (file); filename_vpath 345 src/viewer/mcviewer.c vfs_path_free (view->filename_vpath, TRUE); filename_vpath 346 src/viewer/mcviewer.c view->filename_vpath = NULL; filename_vpath 360 src/viewer/mcviewer.c vfs_path_free (view->filename_vpath, TRUE); filename_vpath 361 src/viewer/mcviewer.c view->filename_vpath = NULL; filename_vpath 372 src/viewer/mcviewer.c vfs_path_free (view->filename_vpath, TRUE); filename_vpath 373 src/viewer/mcviewer.c view->filename_vpath = NULL; filename_vpath 437 src/viewer/mcviewer.c if (mcview_remember_file_position && view->filename_vpath != NULL && start_line == 0) filename_vpath 442 src/viewer/mcviewer.c load_file_position (view->filename_vpath, &line, &col, &new_offset, &view->saved_bookmarks); filename_vpath 35 tests/src/execute__execute_external_editor_or_viewer.c const vfs_path_t * filename_vpath, filename_vpath 50 tests/src/execute__execute_external_editor_or_viewer.c execute_get_external_cmd_opts_from_config (const char *command, const vfs_path_t *filename_vpath, filename_vpath 54 tests/src/execute__execute_external_editor_or_viewer.c execute_external_cmd_opts__filename_vpath__captured = vfs_path_clone (filename_vpath); filename_vpath 143 tests/src/execute__execute_external_editor_or_viewer.c vfs_path_t *filename_vpath; filename_vpath 144 tests/src/execute__execute_external_editor_or_viewer.c filename_vpath = vfs_path_from_str ("/path/to/file.txt"); filename_vpath 152 tests/src/execute__execute_external_editor_or_viewer.c execute_external_editor_or_viewer ("editor_or_viewer", filename_vpath, 123); filename_vpath 159 tests/src/execute__execute_external_editor_or_viewer.c (execute_external_cmd_opts__filename_vpath__captured, filename_vpath)); filename_vpath 176 tests/src/execute__execute_external_editor_or_viewer.c vfs_path_free (filename_vpath, TRUE); filename_vpath 36 tests/src/execute__execute_get_external_cmd_opts_from_config.c const vfs_path_t * filename_vpath, filename_vpath 151 tests/src/execute__execute_get_external_cmd_opts_from_config.c vfs_path_t *filename_vpath; filename_vpath 154 tests/src/execute__execute_get_external_cmd_opts_from_config.c filename_vpath = vfs_path_from_str (data->file_name); filename_vpath 158 tests/src/execute__execute_get_external_cmd_opts_from_config.c execute_get_external_cmd_opts_from_config (data->app_name, filename_vpath, filename_vpath 174 tests/src/execute__execute_get_external_cmd_opts_from_config.c vfs_path_free (filename_vpath, TRUE); filename_vpath 56 tests/src/execute__execute_with_vfs_arg.c vfs_path_t *filename_vpath; filename_vpath 57 tests/src/execute__execute_with_vfs_arg.c filename_vpath = vfs_path_from_str (data->input_path); filename_vpath 62 tests/src/execute__execute_with_vfs_arg.c execute_with_vfs_arg ("cmd_for_local_file", filename_vpath); filename_vpath 72 tests/src/execute__execute_with_vfs_arg.c tmp_vpath = (data->input_path == NULL) ? vfs_get_raw_current_dir () : filename_vpath; filename_vpath 80 tests/src/execute__execute_with_vfs_arg.c vfs_path_free (filename_vpath, TRUE); filename_vpath 94 tests/src/execute__execute_with_vfs_arg.c vfs_path_t *filename_vpath; filename_vpath 95 tests/src/execute__execute_with_vfs_arg.c filename_vpath = NULL; filename_vpath 100 tests/src/execute__execute_with_vfs_arg.c execute_with_vfs_arg ("cmd_for_remote_file", filename_vpath); filename_vpath 116 tests/src/execute__execute_with_vfs_arg.c vfs_path_free (filename_vpath, TRUE); filename_vpath 130 tests/src/execute__execute_with_vfs_arg.c vfs_path_t *filename_vpath; filename_vpath 132 tests/src/execute__execute_with_vfs_arg.c filename_vpath = vfs_path_from_str ("/ftp://some.host/editme.txt"); filename_vpath 138 tests/src/execute__execute_with_vfs_arg.c execute_with_vfs_arg ("cmd_for_remote_file", filename_vpath); filename_vpath 148 tests/src/execute__execute_with_vfs_arg.c filename_vpath)); filename_vpath 150 tests/src/execute__execute_with_vfs_arg.c mctest_assert_true (vfs_path_equal (mc_getlocalcopy__pathname_vpath__captured, filename_vpath)); filename_vpath 157 tests/src/execute__execute_with_vfs_arg.c vfs_path_free (filename_vpath, TRUE); filename_vpath 171 tests/src/execute__execute_with_vfs_arg.c vfs_path_t *filename_vpath, *local_vpath, *local_vpath_should_be_freeing; filename_vpath 173 tests/src/execute__execute_with_vfs_arg.c filename_vpath = vfs_path_from_str ("/ftp://some.host/editme.txt"); filename_vpath 181 tests/src/execute__execute_with_vfs_arg.c execute_with_vfs_arg ("cmd_for_remote_file", filename_vpath); filename_vpath 191 tests/src/execute__execute_with_vfs_arg.c filename_vpath)); filename_vpath 193 tests/src/execute__execute_with_vfs_arg.c mctest_assert_true (vfs_path_equal (mc_getlocalcopy__pathname_vpath__captured, filename_vpath)); filename_vpath 204 tests/src/execute__execute_with_vfs_arg.c (mc_ungetlocalcopy__pathname_vpath__captured, filename_vpath)); filename_vpath 208 tests/src/execute__execute_with_vfs_arg.c vfs_path_free (filename_vpath, TRUE); filename_vpath 75 tests/src/filemanager/exec_get_export_variables_ext.c vfs_path_t *filename_vpath; filename_vpath 88 tests/src/filemanager/exec_get_export_variables_ext.c filename_vpath = vfs_path_from_str ("/tmp/blabla.txt"); filename_vpath 89 tests/src/filemanager/exec_get_export_variables_ext.c actual_string = exec_get_export_variables (filename_vpath); filename_vpath 90 tests/src/filemanager/exec_get_export_variables_ext.c vfs_path_free (filename_vpath, TRUE);