Lines Matching refs:FATFileSystem
61 pub struct FATFileSystem { struct
100 fs: Weak<FATFileSystem>,
162 fs: Arc<FATFileSystem>, in new() argument
228 impl FileSystem for FATFileSystem { implementation
244 impl FATFileSystem { implementation
252 pub fn new(partition: Arc<Partition>) -> Result<Arc<FATFileSystem>, SystemError> { in new() argument
319 let result: Arc<FATFileSystem> = Arc::new(FATFileSystem { in new()
1183 impl Drop for FATFileSystem { implementation
1391 let fs: &Arc<FATFileSystem> = &guard.fs.upgrade().unwrap(); in write_at()
1430 let fs: &Arc<FATFileSystem> = &guard.fs.upgrade().unwrap(); in create()
1469 let fs: &Arc<FATFileSystem> = &guard.fs.upgrade().unwrap(); in resize()
1688 fs: &'a FATFileSystem,