Searched refs:InodeTable (Results 1 – 2 of 2) sorted by relevance
24 pub struct InodeTable { struct118 impl InodeTable { implementation167 ) -> Result<InodeTable> { in from_zip() argument168 let mut table = InodeTable { table: Vec::new() }; in from_zip()233 fn setup(add: fn(&mut zip::ZipWriter<&mut std::io::Cursor<Vec<u8>>>)) -> InodeTable { in setup() argument242 let it = InodeTable::from_zip(&mut zip.unwrap()); in setup()247 fn check_dir(it: &InodeTable, parent: Inode, name: &str) -> Inode { in check_dir() argument260 fn check_file<'a>(it: &'a InodeTable, parent: Inode, name: &str) -> &'a InodeData { in check_file() argument417 let it = InodeTable::from_zip(&mut zip.unwrap()); in rejects_invalid_paths()
38 use crate::inode::{DirectoryEntry, Inode, InodeData, InodeKind, InodeTable};77 inode_table: InodeTable,115 let it = InodeTable::from_zip(&mut z)?; in new()