Lines Matching refs:fuse
25 use fuse::filesystem::*;
26 use fuse::mount::*;
115 fuse::mount(mount_point, "zipfuse", mount_flags, &mount_options)?; in run_fuse()
121 let mut config = fuse::FuseConfig::new(); in run_fuse()
213 impl fuse::filesystem::FileSystem for ZipFuse {
254 ) -> io::Result<(Option<Self::Handle>, fuse::filesystem::OpenOptions)> { in open()
295 Ok((Some(handle), fuse::filesystem::OpenOptions::empty())) in open()
365 ) -> io::Result<(Option<Self::Handle>, fuse::filesystem::OpenOptions)> { in opendir()
383 Ok((Some(handle), fuse::filesystem::OpenOptions::CACHE_DIR)) in opendir()
427 let dirent_size = size_of::<fuse::sys::Dirent>(); in readdir()
447 impl fuse::filesystem::DirectoryIterator for DirIter {
448 fn next(&mut self) -> Option<fuse::filesystem::DirEntry> { in next()
455 Some(fuse::filesystem::DirEntry { in next()