filename_vpath 1128 lib/util.c load_file_position (const vfs_path_t * filename_vpath, long *line, long *column, off_t * offset, filename_vpath 1134 lib/util.c const size_t len = vfs_path_len (filename_vpath); filename_vpath 1158 lib/util.c if (strncmp (buf, vfs_path_as_str (filename_vpath), len) != 0) filename_vpath 1219 lib/util.c save_file_position (const vfs_path_t * filename_vpath, long line, long column, off_t offset, filename_vpath 1227 lib/util.c const size_t len = vfs_path_len (filename_vpath); filename_vpath 1257 lib/util.c (f, "%s %ld;%ld;%" PRIuMAX, vfs_path_as_str (filename_vpath), line, column, filename_vpath 1272 lib/util.c if (buf[len] == ' ' && strncmp (buf, vfs_path_as_str (filename_vpath), len) == 0 filename_vpath 245 lib/util.h void load_file_position (const vfs_path_t * filename_vpath, long *line, long *column, filename_vpath 248 lib/util.h void save_file_position (const vfs_path_t * filename_vpath, long line, long column, off_t offset, filename_vpath 79 lib/vfs/interface.c mc_def_getlocalcopy (const vfs_path_t * filename_vpath) filename_vpath 87 lib/vfs/interface.c fdin = mc_open (filename_vpath, O_RDONLY | O_LINEAR); filename_vpath 91 lib/vfs/interface.c fdout = vfs_mkstemps (&tmp_vpath, "vfs", vfs_path_get_last_path_str (filename_vpath)); filename_vpath 112 lib/vfs/interface.c if (mc_stat (filename_vpath, &mystat) != -1) filename_vpath 129 lib/vfs/interface.c mc_def_ungetlocalcopy (const vfs_path_t * filename_vpath, filename_vpath 142 lib/vfs/interface.c if (vfs_path_get_last_path_vfs (filename_vpath)->write == NULL) filename_vpath 148 lib/vfs/interface.c fdout = mc_open (filename_vpath, O_WRONLY | O_TRUNC); filename_vpath 173 lib/vfs/interface.c message (D_ERROR, _("Changes to file lost"), "%s", vfs_path_get_last_path_str (filename_vpath)); filename_vpath 113 src/editor/edit-impl.h vfs_path_t *filename_vpath; filename_vpath 162 src/editor/edit-impl.h gboolean edit_reload_line (WEdit * edit, const vfs_path_t * filename_vpath, long line); filename_vpath 181 src/editor/edit-impl.h const vfs_path_t * filename_vpath); filename_vpath 185 src/editor/edit-impl.h const vfs_path_t * filename_vpath, long line); filename_vpath 203 src/editor/edit-impl.h off_t edit_insert_file (WEdit * edit, const vfs_path_t * filename_vpath); filename_vpath 274 src/editor/edit-impl.h edit_reload (WEdit * edit, const vfs_path_t * filename_vpath) filename_vpath 276 src/editor/edit-impl.h return edit_reload_line (edit, filename_vpath, 0); filename_vpath 183 src/editor/edit.c edit_load_file_fast (edit_buffer_t * buf, const vfs_path_t * filename_vpath) filename_vpath 190 src/editor/edit.c file = mc_open (filename_vpath, O_RDONLY | O_BINARY); filename_vpath 196 src/editor/edit.c g_strdup_printf (_("Cannot open %s for reading"), vfs_path_as_str (filename_vpath)); filename_vpath 217 src/editor/edit.c errmsg = g_strdup_printf (_("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 234 src/editor/edit.c if (filename_vpath == NULL) filename_vpath 237 src/editor/edit.c l = strlen (vfs_path_as_str (filename_vpath)); filename_vpath 244 src/editor/edit.c if (!strcmp (all_filters[i].extension, vfs_path_as_str (filename_vpath) + l - e)) filename_vpath 253 src/editor/edit.c edit_get_filter (const vfs_path_t * filename_vpath) filename_vpath 258 src/editor/edit.c i = edit_find_filter (filename_vpath); filename_vpath 262 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 g_strdup_printf (_("Cannot open %s for reading"), vfs_path_as_str (filename_vpath)); filename_vpath 327 src/editor/edit.c vfs_path_as_str (filename_vpath)); filename_vpath 335 src/editor/edit.c g_strdup_printf (_("\"%s\" is not a regular file"), vfs_path_as_str (filename_vpath)); filename_vpath 361 src/editor/edit.c vfs_path_as_str (filename_vpath)); filename_vpath 402 src/editor/edit.c if (edit_find_filter (edit->filename_vpath) >= 0) filename_vpath 409 src/editor/edit.c if (edit->filename_vpath != NULL) filename_vpath 415 src/editor/edit.c if (!vfs_file_is_local (edit->filename_vpath)) filename_vpath 419 src/editor/edit.c if (!check_file_access (edit, edit->filename_vpath, &edit->stat1)) filename_vpath 435 src/editor/edit.c if (!edit_load_file_fast (&edit->buffer, edit->filename_vpath)) filename_vpath 445 src/editor/edit.c if (edit->filename_vpath != NULL filename_vpath 446 src/editor/edit.c && *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) != '\0') filename_vpath 449 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 509 src/editor/edit.c if (edit->filename_vpath == NULL filename_vpath 510 src/editor/edit.c || *(vfs_path_get_by_index (edit->filename_vpath, 0)->path) == '\0') filename_vpath 514 src/editor/edit.c save_file_position (edit->filename_vpath, edit->buffer.curs_line + 1, edit->curs_col, filename_vpath 630 src/editor/edit.c edit->locked = lock_file (edit->filename_vpath); filename_vpath 1818 src/editor/edit.c edit_get_write_filter (const vfs_path_t * write_name_vpath, const vfs_path_t * filename_vpath) filename_vpath 1824 src/editor/edit.c i = edit_find_filter (filename_vpath); filename_vpath 1952 src/editor/edit.c edit_insert_file (WEdit * edit, const vfs_path_t * filename_vpath) filename_vpath 1958 src/editor/edit.c p = edit_get_filter (filename_vpath); filename_vpath 2004 src/editor/edit.c file = mc_open (filename_vpath, O_RDONLY | O_BINARY); filename_vpath 2081 src/editor/edit.c edit_init (WEdit * edit, int y, int x, int lines, int cols, const vfs_path_t * filename_vpath, filename_vpath 2132 src/editor/edit.c edit_set_filename (edit, filename_vpath); filename_vpath 2190 src/editor/edit.c (void) unlock_file (edit->filename_vpath); filename_vpath 2200 src/editor/edit.c unlink (vfs_path_get_last_path_str (edit->filename_vpath)); filename_vpath 2209 src/editor/edit.c vfs_path_free (edit->filename_vpath, TRUE); filename_vpath 2233 src/editor/edit.c edit_reload_line (WEdit * edit, const vfs_path_t * filename_vpath, long line) filename_vpath 2244 src/editor/edit.c if (edit_init (e, w->y, w->x, w->lines, w->cols, filename_vpath, line) == NULL) filename_vpath 4020 src/editor/edit.c edit_history_moveto[edit_stack_iterator].filename_vpath = NULL; filename_vpath 4033 src/editor/edit.c vfs_path_free (edit_history_moveto[edit_stack_iterator].filename_vpath, TRUE); filename_vpath 136 src/editor/editcmd.c edit_save_file (WEdit * edit, const vfs_path_t * filename_vpath) filename_vpath 148 src/editor/editcmd.c vpath_element = vfs_path_get_by_index (filename_vpath, 0); filename_vpath 157 src/editor/editcmd.c real_filename_vpath = vfs_path_append_vpath_new (edit->dir_vpath, filename_vpath, NULL); filename_vpath 159 src/editor/editcmd.c real_filename_vpath = vfs_path_clone (filename_vpath); filename_vpath 402 src/editor/editcmd.c vfs_path_as_str (edit->filename_vpath), "save-as", filename_vpath 442 src/editor/editcmd.c save_lock = lock_file (edit->filename_vpath); filename_vpath 443 src/editor/editcmd.c res = edit_save_file (edit, edit->filename_vpath); filename_vpath 447 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 904 src/editor/editcmd.c vfs_path_free (edit->filename_vpath, TRUE); filename_vpath 905 src/editor/editcmd.c edit->filename_vpath = vfs_path_clone (name_vpath); filename_vpath 934 src/editor/editcmd.c if (!vfs_path_equal (edit->filename_vpath, exp_vpath)) filename_vpath 984 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 987 src/editor/editcmd.c edit->locked = unlock_file (edit->filename_vpath); filename_vpath 1023 src/editor/editcmd.c if (edit->filename_vpath == NULL) filename_vpath 1035 src/editor/editcmd.c vfs_path_as_str (edit->filename_vpath)); filename_vpath 1236 src/editor/editcmd.c unlock_file (edit->filename_vpath); filename_vpath 1509 src/editor/editcmd.c if (edit->filename_vpath != NULL) filename_vpath 1510 src/editor/editcmd.c fname = vfs_path_as_str (edit->filename_vpath); filename_vpath 2029 src/editor/editcmd.c if (edit_history_moveto[edit_stack_iterator].filename_vpath != NULL) filename_vpath 2030 src/editor/editcmd.c return edit_reload_line (edit, edit_history_moveto[edit_stack_iterator].filename_vpath, filename_vpath 2056 src/editor/editcmd.c if (edit_history_moveto[edit_stack_iterator].filename_vpath != NULL) filename_vpath 2057 src/editor/editcmd.c return edit_reload_line (edit, edit_history_moveto[edit_stack_iterator].filename_vpath, filename_vpath 207 src/editor/editdraw.c if (edit->filename_vpath != NULL) filename_vpath 209 src/editor/editdraw.c fname = vfs_path_get_last_path_str (edit->filename_vpath); filename_vpath 265 src/editor/editdraw.c if (edit->filename_vpath != NULL) filename_vpath 267 src/editor/editdraw.c fname = vfs_path_get_last_path_str (edit->filename_vpath); filename_vpath 327 src/editor/editwidget.c if (e->filename_vpath == NULL) filename_vpath 332 src/editor/editwidget.c vfs_path_as_str (e->filename_vpath)); filename_vpath 377 src/editor/editwidget.c if (edit->filename_vpath == NULL) filename_vpath 380 src/editor/editwidget.c filename = g_strdup (vfs_path_as_str (edit->filename_vpath)); filename_vpath 1294 src/editor/editwidget.c return 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 381 src/editor/etags.c vfs_path_free (edit_history_moveto[edit_stack_iterator].filename_vpath, TRUE); filename_vpath 384 src/editor/etags.c if (edit->filename_vpath != NULL && edit->filename_vpath->relative filename_vpath 386 src/editor/etags.c edit_history_moveto[edit_stack_iterator].filename_vpath = filename_vpath 387 src/editor/etags.c vfs_path_append_vpath_new (edit->dir_vpath, edit->filename_vpath, NULL); filename_vpath 389 src/editor/etags.c edit_history_moveto[edit_stack_iterator].filename_vpath = filename_vpath 390 src/editor/etags.c vfs_path_clone (edit->filename_vpath); filename_vpath 394 src/editor/etags.c vfs_path_free (edit_history_moveto[edit_stack_iterator].filename_vpath, TRUE); filename_vpath 395 src/editor/etags.c edit_history_moveto[edit_stack_iterator].filename_vpath = filename_vpath 398 src/editor/etags.c edit_reload_line (edit, edit_history_moveto[edit_stack_iterator].filename_vpath, filename_vpath 1521 src/editor/syntax.c if (edit != NULL && edit->filename_vpath == NULL) filename_vpath 1526 src/editor/syntax.c r = edit_read_syntax_file (edit, pnames, f, vfs_path_as_str (edit->filename_vpath), filename_vpath 73 src/execute.c const vfs_path_t * filename_vpath, filename_vpath 179 src/execute.c execute_prepare_with_vfs_arg (const vfs_path_t * filename_vpath, vfs_path_t ** localcopy_vpath, filename_vpath 185 src/execute.c if ((filename_vpath == NULL && vfs_file_is_local (vfs_get_raw_current_dir ())) filename_vpath 186 src/execute.c || vfs_file_is_local (filename_vpath)) filename_vpath 190 src/execute.c if (filename_vpath == NULL) filename_vpath 193 src/execute.c *localcopy_vpath = mc_getlocalcopy (filename_vpath); filename_vpath 197 src/execute.c vfs_path_as_str (filename_vpath)); filename_vpath 209 src/execute.c execute_cleanup_with_vfs_arg (const vfs_path_t * filename_vpath, vfs_path_t ** localcopy_vpath, filename_vpath 222 src/execute.c mc_ungetlocalcopy (filename_vpath, *localcopy_vpath, *mtime != st.st_mtime); filename_vpath 261 src/execute.c execute_get_external_cmd_opts_from_config (const char *command, const vfs_path_t * filename_vpath, filename_vpath 267 src/execute.c if (filename_vpath == NULL) filename_vpath 270 src/execute.c parameter = g_shell_quote (vfs_path_get_last_path_str (filename_vpath)); filename_vpath 606 src/execute.c execute_with_vfs_arg (const char *command, const vfs_path_t * filename_vpath) filename_vpath 612 src/execute.c if (!execute_prepare_with_vfs_arg (filename_vpath, &localcopy_vpath, &mtime)) filename_vpath 615 src/execute.c do_execute_vpath = (localcopy_vpath == NULL) ? filename_vpath : localcopy_vpath; filename_vpath 619 src/execute.c execute_cleanup_with_vfs_arg (filename_vpath, &localcopy_vpath, &mtime); filename_vpath 633 src/execute.c execute_external_editor_or_viewer (const char *command, const vfs_path_t * filename_vpath, filename_vpath 641 src/execute.c if (!execute_prepare_with_vfs_arg (filename_vpath, &localcopy_vpath, &mtime)) filename_vpath 644 src/execute.c do_execute_vpath = (localcopy_vpath == NULL) ? filename_vpath : localcopy_vpath; filename_vpath 665 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 152 src/filemanager/cmd.c filename_vpath = vfs_path_from_str (panel->dir.list[file_idx].fname->str); filename_vpath 153 src/filemanager/cmd.c view_file (filename_vpath, plain_view, use_internal_view); filename_vpath 154 src/filemanager/cmd.c vfs_path_free (filename_vpath, TRUE); filename_vpath 489 src/filemanager/cmd.c view_file_at_line (const vfs_path_t * filename_vpath, gboolean plain_view, gboolean internal, filename_vpath 512 src/filemanager/cmd.c ret = mcview_viewer (NULL, filename_vpath, start_line, search_start, search_end); filename_vpath 532 src/filemanager/cmd.c ret = (regex_command (filename_vpath, view_entry) == 0); filename_vpath 535 src/filemanager/cmd.c ret = mcview_viewer (NULL, filename_vpath, start_line, search_start, search_end); filename_vpath 552 src/filemanager/cmd.c execute_external_editor_or_viewer (viewer, filename_vpath, start_line); filename_vpath 569 src/filemanager/cmd.c view_file (const vfs_path_t * filename_vpath, gboolean plain_view, gboolean internal) filename_vpath 571 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 120 src/filemanager/ext.c exec_cleanup_file_name (const vfs_path_t * filename_vpath, gboolean has_changed) filename_vpath 132 src/filemanager/ext.c mc_ungetlocalcopy (filename_vpath, localfilecopy_vpath, has_changed); filename_vpath 140 src/filemanager/ext.c exec_get_file_name (const vfs_path_t * filename_vpath) filename_vpath 143 src/filemanager/ext.c return quote_func (vfs_path_get_last_path_str (filename_vpath), FALSE); filename_vpath 148 src/filemanager/ext.c localfilecopy_vpath = mc_getlocalcopy (filename_vpath); filename_vpath 181 src/filemanager/ext.c exec_get_export_variables (const vfs_path_t * filename_vpath) filename_vpath 202 src/filemanager/ext.c text = exec_get_file_name (filename_vpath); filename_vpath 229 src/filemanager/ext.c exec_make_shell_string (const char *lc_data, const vfs_path_t * filename_vpath) filename_vpath 254 src/filemanager/ext.c exec_cleanup_file_name (filename_vpath, FALSE); filename_vpath 317 src/filemanager/ext.c text = exec_get_file_name (filename_vpath); filename_vpath 359 src/filemanager/ext.c exec_extension_view (void *target, char *cmd, const vfs_path_t * filename_vpath, int start_line) filename_vpath 381 src/filemanager/ext.c mcview_viewer (cmd, filename_vpath, start_line, 0, 0); filename_vpath 383 src/filemanager/ext.c mcview_load ((WView *) target, cmd, vfs_path_as_str (filename_vpath), start_line, 0, 0); filename_vpath 419 src/filemanager/ext.c exec_extension (WPanel * panel, void *target, const vfs_path_t * filename_vpath, filename_vpath 438 src/filemanager/ext.c do_local_copy = !vfs_file_is_local (filename_vpath); filename_vpath 440 src/filemanager/ext.c shell_string = exec_make_shell_string (lc_data, filename_vpath); filename_vpath 470 src/filemanager/ext.c export_variables = exec_get_export_variables (filename_vpath); filename_vpath 507 src/filemanager/ext.c exec_extension_view (target, NULL, filename_vpath, start_line); filename_vpath 509 src/filemanager/ext.c exec_extension_view (target, cmd, filename_vpath, start_line); filename_vpath 529 src/filemanager/ext.c exec_cleanup_file_name (filename_vpath, TRUE); filename_vpath 586 src/filemanager/ext.c get_file_type_local (const vfs_path_t * filename_vpath, char *buf, int buflen) filename_vpath 591 src/filemanager/ext.c tmp = name_quote (vfs_path_get_last_path_str (filename_vpath), FALSE); filename_vpath 606 src/filemanager/ext.c get_file_encoding_local (const vfs_path_t * filename_vpath, char *buf, int buflen) filename_vpath 611 src/filemanager/ext.c tmp = name_quote (vfs_path_get_last_path_str (filename_vpath), FALSE); filename_vpath 634 src/filemanager/ext.c regex_check_type (const vfs_path_t * filename_vpath, const char *ptr, gboolean case_insense, filename_vpath 662 src/filemanager/ext.c localfile_vpath = mc_getlocalcopy (filename_vpath); filename_vpath 666 src/filemanager/ext.c vfs_path_as_str (filename_vpath)); filename_vpath 695 src/filemanager/ext.c mc_ungetlocalcopy (filename_vpath, localfile_vpath, FALSE); filename_vpath 782 src/filemanager/ext.c regex_command_for (void *target, const vfs_path_t * filename_vpath, const char *action, filename_vpath 797 src/filemanager/ext.c if (filename_vpath == NULL) filename_vpath 880 src/filemanager/ext.c mc_stat (filename_vpath, &mystat); filename_vpath 882 src/filemanager/ext.c filename = vfs_path_get_last_path_str (filename_vpath); filename_vpath 937 src/filemanager/ext.c && mc_search (p + 10, DEFAULT_CHARSET, vfs_path_as_str (filename_vpath), filename_vpath 974 src/filemanager/ext.c found = regex_check_type (filename_vpath, p, case_insense, &have_type, &mcerror); filename_vpath 1033 src/filemanager/ext.c sv = exec_extension (current_panel, target, filename_vpath, r + 1, 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 1942 src/filemanager/find.c vfs_path_t *filename_vpath; filename_vpath 1944 src/filemanager/find.c filename_vpath = vfs_path_from_str (filename); filename_vpath 1945 src/filemanager/find.c panel_cd (panel, filename_vpath, cd_exact); filename_vpath 1946 src/filemanager/find.c vfs_path_free (filename_vpath, TRUE); filename_vpath 245 src/viewer/actions_cmd.c if ((view->filename_vpath != NULL) filename_vpath 246 src/viewer/actions_cmd.c && (*(vfs_path_get_last_path_str (view->filename_vpath)) != '\0') filename_vpath 248 src/viewer/actions_cmd.c view->locked = lock_file (view->filename_vpath); filename_vpath 297 src/viewer/actions_cmd.c fname = x_basename (vfs_path_as_str (view->filename_vpath)); filename_vpath 163 src/viewer/display.c view->filename_vpath != NULL ? filename_vpath 164 src/viewer/display.c vfs_path_get_last_path_str (view->filename_vpath) : view->command != NULL ? 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); filename_vpath 463 src/viewer/hex.c view->locked = unlock_file (view->filename_vpath); filename_vpath 109 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 385 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, 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 144 tests/src/execute__execute_external_editor_or_viewer.c vfs_path_t *filename_vpath; filename_vpath 145 tests/src/execute__execute_external_editor_or_viewer.c filename_vpath = vfs_path_from_str ("/path/to/file.txt"); filename_vpath 153 tests/src/execute__execute_external_editor_or_viewer.c execute_external_editor_or_viewer ("editor_or_viewer", filename_vpath, 123); filename_vpath 160 tests/src/execute__execute_external_editor_or_viewer.c (execute_external_cmd_opts__filename_vpath__captured, filename_vpath)); filename_vpath 177 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 156 tests/src/execute__execute_get_external_cmd_opts_from_config.c vfs_path_t *filename_vpath; filename_vpath 159 tests/src/execute__execute_get_external_cmd_opts_from_config.c filename_vpath = vfs_path_from_str (data->file_name); filename_vpath 163 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 179 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 73 tests/src/filemanager/exec_get_export_variables_ext.c vfs_path_t *filename_vpath; filename_vpath 86 tests/src/filemanager/exec_get_export_variables_ext.c filename_vpath = vfs_path_from_str ("/tmp/blabla.txt"); filename_vpath 87 tests/src/filemanager/exec_get_export_variables_ext.c actual_string = exec_get_export_variables (filename_vpath); filename_vpath 88 tests/src/filemanager/exec_get_export_variables_ext.c vfs_path_free (filename_vpath, TRUE);