filename_vpath 1156 lib/util.c load_file_position (const vfs_path_t *filename_vpath, long *line, long *column, off_t *offset, filename_vpath 1162 lib/util.c const size_t len = vfs_path_len (filename_vpath); filename_vpath 1186 lib/util.c if (strncmp (buf, vfs_path_as_str (filename_vpath), len) != 0) filename_vpath 1247 lib/util.c save_file_position (const vfs_path_t *filename_vpath, long line, long column, off_t offset, filename_vpath 1255 lib/util.c const size_t len = vfs_path_len (filename_vpath); filename_vpath 1284 lib/util.c if (fprintf (f, "%s %ld;%ld;%" PRIuMAX, vfs_path_as_str (filename_vpath), line, column, filename_vpath 1300 lib/util.c if (buf[len] == ' ' && strncmp (buf, vfs_path_as_str (filename_vpath), len) == 0 filename_vpath 262 lib/util.h void load_file_position (const vfs_path_t *filename_vpath, long *line, long *column, off_t *offset, filename_vpath 265 lib/util.h void save_file_position (const vfs_path_t *filename_vpath, long line, long column, off_t offset, filename_vpath 82 lib/vfs/interface.c mc_def_getlocalcopy (const vfs_path_t *filename_vpath) filename_vpath 90 lib/vfs/interface.c fdin = mc_open (filename_vpath, O_RDONLY | O_LINEAR); filename_vpath 94 lib/vfs/interface.c fdout = vfs_mkstemps (&tmp_vpath, "vfs", vfs_path_get_last_path_str (filename_vpath)); filename_vpath 115 lib/vfs/interface.c if (mc_stat (filename_vpath, &mystat) != -1) filename_vpath 132 lib/vfs/interface.c mc_def_ungetlocalcopy (const vfs_path_t *filename_vpath, const vfs_path_t *local_vpath, filename_vpath 145 lib/vfs/interface.c if (vfs_path_get_last_path_vfs (filename_vpath)->write == NULL) filename_vpath 151 lib/vfs/interface.c fdout = mc_open (filename_vpath, O_WRONLY | O_TRUNC); filename_vpath 177 lib/vfs/interface.c vfs_path_get_last_path_str (filename_vpath)); filename_vpath 156 src/editor/edit-impl.h char *edit_get_write_filter (const vfs_path_t *write_name_vpath, const vfs_path_t *filename_vpath); filename_vpath 178 src/editor/edit-impl.h off_t edit_insert_file (WEdit *edit, const vfs_path_t *filename_vpath); filename_vpath 249 src/editor/edit-impl.h edit_reload (WEdit *edit, const vfs_path_t *filename_vpath) filename_vpath 253 src/editor/edit-impl.h edit_arg_init (&arg, (vfs_path_t *) filename_vpath, 0); filename_vpath 193 src/editor/edit.c edit_load_file_fast (edit_buffer_t *buf, const vfs_path_t *filename_vpath) filename_vpath 200 src/editor/edit.c file = mc_open (filename_vpath, O_RDONLY | O_BINARY); filename_vpath 204 src/editor/edit.c vfs_path_as_str (filename_vpath)); filename_vpath 220 src/editor/edit.c message (D_ERROR, MSG_ERROR, _ ("Error reading %s"), vfs_path_as_str (filename_vpath)); filename_vpath 230 src/editor/edit.c edit_find_filter (const vfs_path_t *filename_vpath) filename_vpath 232 src/editor/edit.c if (filename_vpath != NULL) filename_vpath 237 src/editor/edit.c s = vfs_path_as_str (filename_vpath); filename_vpath 250 src/editor/edit.c edit_get_filter (const vfs_path_t *filename_vpath) filename_vpath 256 src/editor/edit.c i = edit_find_filter (filename_vpath); filename_vpath 260 src/editor/edit.c quoted_name = name_quote (vfs_path_as_str (filename_vpath), FALSE); filename_vpath 295 src/editor/edit.c check_file_access (WEdit *edit, const vfs_path_t *filename_vpath, struct stat *st) filename_vpath 303 src/editor/edit.c file = mc_open (filename_vpath, O_NONBLOCK | O_RDONLY | O_BINARY, 0666); filename_vpath 310 src/editor/edit.c file = mc_open (filename_vpath, O_NONBLOCK | O_RDONLY | O_BINARY | O_CREAT | O_EXCL, 0666); filename_vpath 314 src/editor/edit.c vfs_path_as_str (filename_vpath)); filename_vpath 326 src/editor/edit.c vfs_path_as_str (filename_vpath)); filename_vpath 334 src/editor/edit.c g_strdup_printf (_ ("\"%s\" is not a regular file"), vfs_path_as_str (filename_vpath)); filename_vpath 360 src/editor/edit.c vfs_path_as_str (filename_vpath)); filename_vpath 401 src/editor/edit.c if (edit_find_filter (edit->filename_vpath) >= 0) filename_vpath 408 src/editor/edit.c if (edit->filename_vpath != NULL) filename_vpath 414 src/editor/edit.c if (!vfs_file_is_local (edit->filename_vpath)) filename_vpath 418 src/editor/edit.c if (!check_file_access (edit, edit->filename_vpath, &edit->stat1)) filename_vpath 434 src/editor/edit.c if (!edit_load_file_fast (&edit->buffer, edit->filename_vpath)) filename_vpath 444 src/editor/edit.c if (edit->filename_vpath != NULL filename_vpath 445 src/editor/edit.c && *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) != '\0') filename_vpath 448 src/editor/edit.c if (edit_insert_file (edit, edit->filename_vpath) < 0) filename_vpath 476 src/editor/edit.c if (edit->filename_vpath == NULL filename_vpath 477 src/editor/edit.c || *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) == '\0') filename_vpath 480 src/editor/edit.c load_file_position (edit->filename_vpath, &line, &column, &offset, &edit->serialized_bookmarks); filename_vpath 510 src/editor/edit.c if (edit->filename_vpath == NULL filename_vpath 511 src/editor/edit.c || *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) == '\0') filename_vpath 515 src/editor/edit.c save_file_position (edit->filename_vpath, edit->buffer.curs_line + 1, edit->curs_col, filename_vpath 635 src/editor/edit.c edit->locked = lock_file (edit->filename_vpath); filename_vpath 1832 src/editor/edit.c edit_get_write_filter (const vfs_path_t *write_name_vpath, const vfs_path_t *filename_vpath) filename_vpath 1839 src/editor/edit.c i = edit_find_filter (filename_vpath); filename_vpath 1970 src/editor/edit.c edit_insert_file (WEdit *edit, const vfs_path_t *filename_vpath) filename_vpath 1976 src/editor/edit.c p = edit_get_filter (filename_vpath); filename_vpath 2014 src/editor/edit.c file = mc_open (filename_vpath, O_RDONLY | O_BINARY); filename_vpath 2215 src/editor/edit.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 2225 src/editor/edit.c unlink (vfs_path_get_last_path_str (edit->filename_vpath)); filename_vpath 2234 src/editor/edit.c vfs_path_free (edit->filename_vpath, TRUE); filename_vpath 4238 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 141 src/editor/editcmd.c vpath_element = vfs_path_get_by_index (filename_vpath, 0); filename_vpath 150 src/editor/editcmd.c real_filename_vpath = vfs_path_append_vpath_new (edit->dir_vpath, filename_vpath, NULL); filename_vpath 152 src/editor/editcmd.c real_filename_vpath = vfs_path_clone (filename_vpath); filename_vpath 390 src/editor/editcmd.c vfs_path_as_str (edit->filename_vpath), "save-as", &filename_res, NULL, filename_vpath 434 src/editor/editcmd.c save_lock = lock_file (edit->filename_vpath); filename_vpath 436 src/editor/editcmd.c const int res = edit_save_file (edit, edit->filename_vpath); filename_vpath 440 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 897 src/editor/editcmd.c vfs_path_free (edit->filename_vpath, TRUE); filename_vpath 898 src/editor/editcmd.c edit->filename_vpath = vfs_path_clone (name_vpath); filename_vpath 927 src/editor/editcmd.c if (!vfs_path_equal (edit->filename_vpath, exp_vpath)) filename_vpath 975 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 978 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 1014 src/editor/editcmd.c if (edit->filename_vpath == NULL) filename_vpath 1026 src/editor/editcmd.c vfs_path_as_str (edit->filename_vpath)); filename_vpath 1256 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 1465 src/editor/editcmd.c if (edit->filename_vpath != NULL) filename_vpath 1466 src/editor/editcmd.c fname = vfs_path_as_str (edit->filename_vpath); filename_vpath 202 src/editor/editdraw.c if (edit->filename_vpath != NULL) filename_vpath 204 src/editor/editdraw.c fname = vfs_path_get_last_path_str (edit->filename_vpath); filename_vpath 260 src/editor/editdraw.c if (edit->filename_vpath != NULL) filename_vpath 262 src/editor/editdraw.c fname = vfs_path_get_last_path_str (edit->filename_vpath); filename_vpath 335 src/editor/editwidget.c if (e->filename_vpath == NULL) filename_vpath 339 src/editor/editwidget.c vfs_path_as_str (e->filename_vpath)); filename_vpath 388 src/editor/editwidget.c if (edit->filename_vpath == NULL) filename_vpath 391 src/editor/editwidget.c filename = g_strdup (vfs_path_as_str (edit->filename_vpath)); filename_vpath 65 src/editor/editwidget.h vfs_path_t *filename_vpath; // Name of the file filename_vpath 381 src/editor/etags.c if (edit->filename_vpath != NULL && edit->filename_vpath->relative filename_vpath 383 src/editor/etags.c vpath = vfs_path_append_vpath_new (edit->dir_vpath, edit->filename_vpath, NULL); filename_vpath 385 src/editor/etags.c vpath = vfs_path_clone (edit->filename_vpath); filename_vpath 1549 src/editor/syntax.c if (edit != NULL && edit->filename_vpath == NULL) filename_vpath 1554 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 262 src/execute.c execute_get_external_cmd_opts_from_config (const char *command, const vfs_path_t *filename_vpath, filename_vpath 268 src/execute.c if (filename_vpath == NULL) filename_vpath 271 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 149 src/filemanager/cmd.c vfs_path_t *filename_vpath; filename_vpath 151 src/filemanager/cmd.c filename_vpath = vfs_path_from_str (fe->fname->str); filename_vpath 152 src/filemanager/cmd.c view_file (filename_vpath, plain_view, use_internal_view); filename_vpath 153 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 209 src/filemanager/ext.c text = exec_get_file_name (filename_vpath); filename_vpath 235 src/filemanager/ext.c exec_make_shell_string (const char *lc_data, const vfs_path_t *filename_vpath) filename_vpath 259 src/filemanager/ext.c exec_cleanup_file_name (filename_vpath, FALSE); filename_vpath 322 src/filemanager/ext.c text = exec_get_file_name (filename_vpath); filename_vpath 368 src/filemanager/ext.c exec_extension_view (void *target, char *cmd, const vfs_path_t *filename_vpath, int start_line) filename_vpath 388 src/filemanager/ext.c mcview_viewer (cmd, filename_vpath, start_line, 0, 0); filename_vpath 390 src/filemanager/ext.c mcview_load ((WView *) target, cmd, vfs_path_as_str (filename_vpath), start_line, 0, 0); filename_vpath 425 src/filemanager/ext.c exec_extension (WPanel *panel, void *target, const vfs_path_t *filename_vpath, const char *lc_data, filename_vpath 442 src/filemanager/ext.c do_local_copy = !vfs_file_is_local (filename_vpath); filename_vpath 444 src/filemanager/ext.c shell_string = exec_make_shell_string (lc_data, filename_vpath); filename_vpath 474 src/filemanager/ext.c export_variables = exec_get_export_variables (filename_vpath); filename_vpath 511 src/filemanager/ext.c exec_extension_view (target, NULL, filename_vpath, start_line); filename_vpath 513 src/filemanager/ext.c exec_extension_view (target, cmd, filename_vpath, start_line); filename_vpath 533 src/filemanager/ext.c exec_cleanup_file_name (filename_vpath, TRUE); filename_vpath 591 src/filemanager/ext.c get_file_type_local (const vfs_path_t *filename_vpath, char *buf, int buflen) filename_vpath 596 src/filemanager/ext.c filename_quoted = name_quote (vfs_path_get_last_path_str (filename_vpath), FALSE); filename_vpath 614 src/filemanager/ext.c get_file_encoding_local (const vfs_path_t *filename_vpath, char *buf, int buflen) filename_vpath 619 src/filemanager/ext.c filename_quoted = name_quote (vfs_path_get_last_path_str (filename_vpath), FALSE); filename_vpath 652 src/filemanager/ext.c regex_check_type (const vfs_path_t *filename_vpath, const char *ptr, gboolean case_insense, filename_vpath 676 src/filemanager/ext.c localfile_vpath = mc_getlocalcopy (filename_vpath); filename_vpath 680 src/filemanager/ext.c vfs_path_as_str (filename_vpath)); filename_vpath 708 src/filemanager/ext.c mc_ungetlocalcopy (filename_vpath, localfile_vpath, FALSE); filename_vpath 893 src/filemanager/ext.c regex_command_for (void *target, const vfs_path_t *filename_vpath, const char *action, filename_vpath 910 src/filemanager/ext.c if (filename_vpath == NULL) filename_vpath 926 src/filemanager/ext.c mc_stat (filename_vpath, &mystat); filename_vpath 928 src/filemanager/ext.c filename = vfs_path_get_last_path_str (filename_vpath); filename_vpath 959 src/filemanager/ext.c && mc_search (pattern, DEFAULT_CHARSET, vfs_path_as_str (filename_vpath), filename_vpath 976 src/filemanager/ext.c regex_check_type (filename_vpath, pattern, ignore_case, &have_type, &mcerror) filename_vpath 1084 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 1939 src/filemanager/find.c vfs_path_t *filename_vpath; filename_vpath 1941 src/filemanager/find.c filename_vpath = vfs_path_from_str (filename); filename_vpath 1942 src/filemanager/find.c panel_cd (panel, filename_vpath, cd_exact); filename_vpath 1943 src/filemanager/find.c vfs_path_free (filename_vpath, TRUE); filename_vpath 213 src/viewer/actions_cmd.c if ((view->filename_vpath != NULL) filename_vpath 214 src/viewer/actions_cmd.c && (*(vfs_path_get_last_path_str (view->filename_vpath)) != '\0') filename_vpath 216 src/viewer/actions_cmd.c view->locked = lock_file (view->filename_vpath) != 0; filename_vpath 265 src/viewer/actions_cmd.c fname = x_basename (vfs_path_as_str (view->filename_vpath)); filename_vpath 159 src/viewer/display.c file_label = view->filename_vpath != NULL ? vfs_path_get_last_path_str (view->filename_vpath) filename_vpath 393 src/viewer/hex.c g_assert (view->filename_vpath != NULL); filename_vpath 395 src/viewer/hex.c fp = mc_open (view->filename_vpath, O_WRONLY); filename_vpath 416 src/viewer/hex.c view->locked = unlock_file (view->filename_vpath) != 0; filename_vpath 464 src/viewer/hex.c view->locked = unlock_file (view->filename_vpath) != 0; filename_vpath 95 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 391 src/viewer/lib.c view_filename = vfs_path_as_str (view->filename_vpath); filename_vpath 286 src/viewer/mcviewer.c view->filename_vpath = vfs_path_from_str (file); filename_vpath 338 src/viewer/mcviewer.c vfs_path_free (view->filename_vpath, TRUE); filename_vpath 339 src/viewer/mcviewer.c view->filename_vpath = NULL; filename_vpath 353 src/viewer/mcviewer.c vfs_path_free (view->filename_vpath, TRUE); filename_vpath 354 src/viewer/mcviewer.c view->filename_vpath = NULL; filename_vpath 365 src/viewer/mcviewer.c vfs_path_free (view->filename_vpath, TRUE); filename_vpath 366 src/viewer/mcviewer.c view->filename_vpath = NULL; filename_vpath 430 src/viewer/mcviewer.c if (mcview_remember_file_position && view->filename_vpath != NULL && start_line == 0) filename_vpath 435 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, long start_line); filename_vpath 49 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 53 tests/src/execute__execute_external_editor_or_viewer.c execute_external_cmd_opts__filename_vpath__captured = vfs_path_clone (filename_vpath); filename_vpath 140 tests/src/execute__execute_external_editor_or_viewer.c vfs_path_t *filename_vpath; filename_vpath 141 tests/src/execute__execute_external_editor_or_viewer.c filename_vpath = vfs_path_from_str ("/path/to/file.txt"); filename_vpath 148 tests/src/execute__execute_external_editor_or_viewer.c execute_external_editor_or_viewer ("editor_or_viewer", filename_vpath, 123); filename_vpath 155 tests/src/execute__execute_external_editor_or_viewer.c vfs_path_equal (execute_external_cmd_opts__filename_vpath__captured, filename_vpath)); filename_vpath 172 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, long start_line); filename_vpath 145 tests/src/execute__execute_get_external_cmd_opts_from_config.c vfs_path_t *filename_vpath; filename_vpath 148 tests/src/execute__execute_get_external_cmd_opts_from_config.c filename_vpath = vfs_path_from_str (data->file_name); filename_vpath 151 tests/src/execute__execute_get_external_cmd_opts_from_config.c actual_result = execute_get_external_cmd_opts_from_config (data->app_name, filename_vpath, filename_vpath 167 tests/src/execute__execute_get_external_cmd_opts_from_config.c vfs_path_free (filename_vpath, TRUE); filename_vpath 51 tests/src/execute__execute_with_vfs_arg.c vfs_path_t *filename_vpath; filename_vpath 52 tests/src/execute__execute_with_vfs_arg.c filename_vpath = vfs_path_from_str (data->input_path); filename_vpath 57 tests/src/execute__execute_with_vfs_arg.c execute_with_vfs_arg ("cmd_for_local_file", filename_vpath); filename_vpath 67 tests/src/execute__execute_with_vfs_arg.c tmp_vpath = (data->input_path == NULL) ? vfs_get_raw_current_dir () : filename_vpath; filename_vpath 75 tests/src/execute__execute_with_vfs_arg.c vfs_path_free (filename_vpath, TRUE); filename_vpath 85 tests/src/execute__execute_with_vfs_arg.c vfs_path_t *filename_vpath; filename_vpath 86 tests/src/execute__execute_with_vfs_arg.c filename_vpath = NULL; filename_vpath 91 tests/src/execute__execute_with_vfs_arg.c execute_with_vfs_arg ("cmd_for_remote_file", filename_vpath); filename_vpath 106 tests/src/execute__execute_with_vfs_arg.c vfs_path_free (filename_vpath, TRUE); filename_vpath 116 tests/src/execute__execute_with_vfs_arg.c vfs_path_t *filename_vpath; filename_vpath 118 tests/src/execute__execute_with_vfs_arg.c filename_vpath = vfs_path_from_str ("/ftp://some.host/editme.txt"); filename_vpath 124 tests/src/execute__execute_with_vfs_arg.c execute_with_vfs_arg ("cmd_for_remote_file", filename_vpath); filename_vpath 133 tests/src/execute__execute_with_vfs_arg.c vfs_path_equal (g_ptr_array_index (vfs_file_is_local__vpath__captured, 0), filename_vpath)); filename_vpath 135 tests/src/execute__execute_with_vfs_arg.c mctest_assert_true (vfs_path_equal (mc_getlocalcopy__pathname_vpath__captured, filename_vpath)); filename_vpath 141 tests/src/execute__execute_with_vfs_arg.c vfs_path_free (filename_vpath, TRUE); filename_vpath 151 tests/src/execute__execute_with_vfs_arg.c vfs_path_t *filename_vpath, *local_vpath, *local_vpath_should_be_freeing; filename_vpath 153 tests/src/execute__execute_with_vfs_arg.c filename_vpath = vfs_path_from_str ("/ftp://some.host/editme.txt"); filename_vpath 161 tests/src/execute__execute_with_vfs_arg.c execute_with_vfs_arg ("cmd_for_remote_file", filename_vpath); filename_vpath 170 tests/src/execute__execute_with_vfs_arg.c vfs_path_equal (g_ptr_array_index (vfs_file_is_local__vpath__captured, 0), filename_vpath)); filename_vpath 172 tests/src/execute__execute_with_vfs_arg.c mctest_assert_true (vfs_path_equal (mc_getlocalcopy__pathname_vpath__captured, filename_vpath)); filename_vpath 182 tests/src/execute__execute_with_vfs_arg.c vfs_path_equal (mc_ungetlocalcopy__pathname_vpath__captured, filename_vpath)); filename_vpath 186 tests/src/execute__execute_with_vfs_arg.c vfs_path_free (filename_vpath, TRUE); filename_vpath 72 tests/src/filemanager/exec_get_export_variables_ext.c vfs_path_t *filename_vpath; filename_vpath 85 tests/src/filemanager/exec_get_export_variables_ext.c filename_vpath = vfs_path_from_str ("/tmp/blabla.txt"); filename_vpath 86 tests/src/filemanager/exec_get_export_variables_ext.c actual_string = exec_get_export_variables (filename_vpath); filename_vpath 87 tests/src/filemanager/exec_get_export_variables_ext.c vfs_path_free (filename_vpath, TRUE);