Searched refs:inode_table (Results 1 – 2 of 2) sorted by relevance
190 inode_table: RwLock<BTreeMap<Inode, InodeState>>, field217 let mut inode_table = BTreeMap::new(); in new() localVariable218 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() localVariable261 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() localVariable296 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 …]
129 inode_table: InodeTable, field178 inode_table: it, in new()187 self.inode_table.get(inode).ok_or_else(ebadf) in find_inode()