Home
last modified time | relevance | path

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

/DragonOS-0.1.7/kernel/src/filesystem/ramfs/
Dmod.rs26 struct LockedRamFSInode(SpinLock<RamFSInode>); struct
32 root_inode: Arc<LockedRamFSInode>,
43 parent: Weak<LockedRamFSInode>,
45 self_ref: Weak<LockedRamFSInode>,
47 children: BTreeMap<String, Arc<LockedRamFSInode>>,
78 let root: Arc<LockedRamFSInode> = Arc::new(LockedRamFSInode(SpinLock::new(RamFSInode { in new()
116 impl IndexNode for LockedRamFSInode { implementation
249 let result: Arc<LockedRamFSInode> = Arc::new(LockedRamFSInode(SpinLock::new(RamFSInode { in create_with_data()
283 let other: &LockedRamFSInode = other in link()
284 .downcast_ref::<LockedRamFSInode>() in link()