Home
last modified time | relevance | path

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

/packages/modules/Virtualization/authfs/src/
Dfusefs.rs190 inode_table: RwLock<BTreeMap<Inode, InodeState>>, field
217 let mut inode_table = BTreeMap::new(); in new() localVariable
218 inode_table.insert( in new()
224 inode_table: RwLock::new(inode_table), in new()
259 let inode_table = self.inode_table.get_mut().unwrap(); in add_entry_at_ro_dir_by_path() localVariable
261 let current_dir_entry = &mut inode_table in add_entry_at_ro_dir_by_path()
281 if inode_table in add_entry_at_ro_dir_by_path()
295 let inode_table = self.inode_table.get_mut().unwrap(); in add_entry_at_ro_dir_by_path() localVariable
296 let inode_state = inode_table.get_mut(&parent_inode).expect("previously returned inode"); in add_entry_at_ro_dir_by_path()
305 if inode_table.insert(new_inode, InodeState::new(entry)).is_some() { in add_entry_at_ro_dir_by_path()
[all …]
/packages/modules/Virtualization/zipfuse/src/
Dmain.rs129 inode_table: InodeTable, field
178 inode_table: it, in new()
187 self.inode_table.get(inode).ok_or_else(ebadf) in find_inode()