vfs 115 lib/global.c .vfs = vfs 280 lib/global.h } vfs; vfs 296 lib/vfs/interface.c struct vfs_class *vfs; \ vfs 303 lib/vfs/interface.c vfs = vfs_class_find_by_handle (handle, &fsinfo); \ vfs 304 lib/vfs/interface.c if (vfs == NULL) \ vfs 307 lib/vfs/interface.c result = vfs->name != NULL ? vfs->name (fsinfo, buf, count) : -1; \ vfs 309 lib/vfs/interface.c errno = vfs->name != NULL ? vfs_ferrno (vfs) : ENOTSUP; \ vfs 359 lib/vfs/interface.c struct vfs_class *vfs; vfs 362 lib/vfs/interface.c vfs = vfs_class_find_by_handle (handle, &fsinfo); vfs 364 lib/vfs/interface.c return (vfs == NULL || vfs->ctl == NULL) ? 0 : vfs->ctl (fsinfo, ctlop, arg); vfs 392 lib/vfs/interface.c struct vfs_class *vfs; vfs 399 lib/vfs/interface.c vfs = vfs_class_find_by_handle (handle, &fsinfo); vfs 400 lib/vfs/interface.c if (vfs == NULL || fsinfo == NULL) vfs 406 lib/vfs/interface.c if (vfs->close == NULL) vfs 408 lib/vfs/interface.c result = vfs->close (fsinfo); vfs 411 lib/vfs/interface.c errno = vfs_ferrno (vfs); vfs 464 lib/vfs/interface.c struct vfs_class *vfs; vfs 477 lib/vfs/interface.c vfs = vfs_class_find_by_handle (handle, &fsinfo); vfs 478 lib/vfs/interface.c if (vfs == NULL || fsinfo == NULL) vfs 482 lib/vfs/interface.c if (vfs->readdir != NULL) vfs 484 lib/vfs/interface.c entry = vfs->readdir (vfs_path_element->dir.info); vfs 498 lib/vfs/interface.c errno = vfs->readdir ? vfs_ferrno (vfs) : ENOTSUP; vfs 508 lib/vfs/interface.c struct vfs_class *vfs; vfs 517 lib/vfs/interface.c vfs = vfs_class_find_by_handle (handle, &fsinfo); vfs 518 lib/vfs/interface.c if (vfs != NULL && fsinfo != NULL) vfs 530 lib/vfs/interface.c result = vfs->closedir ? (*vfs->closedir) (vfs_path_element->dir.info) : -1; vfs 587 lib/vfs/interface.c struct vfs_class *vfs; vfs 594 lib/vfs/interface.c vfs = vfs_class_find_by_handle (handle, &fsinfo); vfs 595 lib/vfs/interface.c if (vfs == NULL) vfs 598 lib/vfs/interface.c result = vfs->fstat ? vfs->fstat (fsinfo, buf) : -1; vfs 600 lib/vfs/interface.c errno = vfs->fstat ? vfs_ferrno (vfs) : ENOTSUP; vfs 748 lib/vfs/interface.c struct vfs_class *vfs; vfs 755 lib/vfs/interface.c vfs = vfs_class_find_by_handle (fd, &fsinfo); vfs 756 lib/vfs/interface.c if (vfs == NULL) vfs 759 lib/vfs/interface.c result = vfs->lseek ? vfs->lseek (fsinfo, offset, whence) : -1; vfs 761 lib/vfs/interface.c errno = vfs->lseek ? vfs_ferrno (vfs) : ENOTSUP; vfs 341 lib/vfs/path.c struct vfs_class *vfs = VFS_CLASS (g_ptr_array_index (vfs__classes_list, i)); vfs 342 lib/vfs/path.c if ((vfs->name != NULL) && (strcmp (vfs->name, class_name) == 0)) vfs 343 lib/vfs/path.c return vfs; vfs 1033 lib/vfs/path.c struct vfs_class *vfs; vfs 1035 lib/vfs/path.c vfs = VFS_CLASS (g_ptr_array_index (vfs__classes_list, i)); vfs 1036 lib/vfs/path.c if (vfs->which != NULL) vfs 1038 lib/vfs/path.c if (vfs->which (vfs, prefix) == -1) vfs 1040 lib/vfs/path.c return vfs; vfs 1043 lib/vfs/path.c if (vfs->prefix != NULL && strncmp (prefix, vfs->prefix, strlen (vfs->prefix)) == 0) vfs 1044 lib/vfs/path.c return vfs; vfs 217 lib/vfs/vfs.c return (mc_global.vfs.cd_symlinks && mc_stat (vpath, &my_stat) == 0 vfs 300 lib/vfs/vfs.c vfs_ferrno (struct vfs_class *vfs) vfs 302 lib/vfs/vfs.c return vfs->ferrno ? (*vfs->ferrno) (vfs) : E_UNKNOWN; vfs 309 lib/vfs/vfs.c vfs_register_class (struct vfs_class * vfs) vfs 311 lib/vfs/vfs.c if (vfs->init != NULL) /* vfs has own initialization function */ vfs 312 lib/vfs/vfs.c if (!vfs->init (vfs)) /* but it failed */ vfs 315 lib/vfs/vfs.c g_ptr_array_add (vfs__classes_list, vfs); vfs 323 lib/vfs/vfs.c vfs_unregister_class (struct vfs_class *vfs) vfs 325 lib/vfs/vfs.c if (vfs->done != NULL) vfs 326 lib/vfs/vfs.c vfs->done (vfs); vfs 328 lib/vfs/vfs.c g_ptr_array_remove (vfs__classes_list, vfs); vfs 509 lib/vfs/vfs.c struct vfs_class *vfs = VFS_CLASS (g_ptr_array_index (vfs__classes_list, i)); vfs 511 lib/vfs/vfs.c if (vfs->done != NULL) vfs 512 lib/vfs/vfs.c vfs->done (vfs); vfs 600 lib/vfs/vfs.c struct vfs_class *vfs = VFS_CLASS (g_ptr_array_index (vfs__classes_list, i)); vfs 602 lib/vfs/vfs.c if (vfs->fill_names != NULL) vfs 603 lib/vfs/vfs.c vfs->fill_names (vfs, func); vfs 246 lib/vfs/vfs.h gboolean vfs_register_class (struct vfs_class *vfs); vfs 247 lib/vfs/vfs.h void vfs_unregister_class (struct vfs_class *vfs); vfs 288 lib/vfs/vfs.h int vfs_ferrno (struct vfs_class *vfs); vfs 555 src/filemanager/boxes.c QUICK_CHECKBOX (N_("&Preallocate space"), &mc_global.vfs.preallocate_space, vfs 580 src/filemanager/boxes.c QUICK_CHECKBOX (N_("Cd follows lin&ks"), &mc_global.vfs.cd_symlinks, NULL), vfs 610 src/filemanager/boxes.c mc_global.vfs.preallocate_space = FALSE; vfs 112 src/filemanager/file.c const struct vfs_class *vfs; vfs 352 src/filemanager/file.c if (lnk->vfs == class && lnk->ino == ino && lnk->dev == dev) vfs 484 src/filemanager/file.c lnk->vfs = vfs_path_get_last_path_vfs (src_vpath); vfs 2500 src/filemanager/file.c while (mc_global.vfs.preallocate_space && vfs 2853 src/filemanager/file.c lp->vfs = vfs_path_get_by_index (src_vpath, -1)->class; vfs 2929 src/filemanager/file.c lp->vfs = vfs_path_get_by_index (dst_vpath, -1)->class; vfs 293 src/setup.c { "preallocate_space", &mc_global.vfs.preallocate_space }, vfs 318 src/setup.c { "cd_symlinks", &mc_global.vfs.cd_symlinks },