Home
last modified time | relevance | path

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

/packages/modules/Virtualization/zipfuse/src/
Dinode.rs24 pub struct InodeTable { struct
118 impl InodeTable { implementation
167 ) -> Result<InodeTable> { in from_zip() argument
168 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() argument
242 let it = InodeTable::from_zip(&mut zip.unwrap()); in setup()
247 fn check_dir(it: &InodeTable, parent: Inode, name: &str) -> Inode { in check_dir() argument
260 fn check_file<'a>(it: &'a InodeTable, parent: Inode, name: &str) -> &'a InodeData { in check_file() argument
417 let it = InodeTable::from_zip(&mut zip.unwrap()); in rejects_invalid_paths()
Dmain.rs38 use crate::inode::{DirectoryEntry, Inode, InodeData, InodeKind, InodeTable};
77 inode_table: InodeTable,
115 let it = InodeTable::from_zip(&mut z)?; in new()