Home
last modified time | relevance | path

Searched refs:LockedFATInode (Results 1 – 1 of 1) sorted by relevance

/DragonOS-0.1.9/kernel/src/filesystem/fat/
Dfs.rs76 root_inode: Arc<LockedFATInode>,
81 pub struct LockedFATInode(SpinLock<FATInode>); struct
96 parent: Weak<LockedFATInode>,
98 self_ref: Weak<LockedFATInode>,
101 children: BTreeMap<String, Arc<LockedFATInode>>,
132 fn find(&mut self, name: &str) -> Result<Arc<LockedFATInode>, SystemError> { in find() argument
145 let entry_inode: Arc<LockedFATInode> = LockedFATInode::new( in find()
168 impl LockedFATInode { implementation
171 parent: Weak<LockedFATInode>, in new() argument
173 ) -> Arc<LockedFATInode> { in new() argument
[all …]