Searched refs:check_file (Results 1 – 2 of 2) sorted by relevance
/packages/modules/Virtualization/zipfuse/src/ |
D | inode.rs | 260 fn check_file<'a>(it: &'a InodeTable, parent: Inode, name: &str) -> &'a InodeData { in check_file() function 286 let inode_data = check_file(&it, ROOT, "foo"); in one_file() 311 let d = check_file(&it, c, "d"); in one_file_in_subdirs() 355 let _c1 = check_file(&it, b2, "c1"); in complex_hierarchy() 358 let _d1 = check_file(&it, c2, "d1"); in complex_hierarchy() 359 let _d2 = check_file(&it, c2, "d3"); in complex_hierarchy() 360 let _d3 = check_file(&it, c2, "d3"); in complex_hierarchy() 363 let _y1 = check_file(&it, x, "y1"); in complex_hierarchy() 364 let _y2 = check_file(&it, x, "y2"); in complex_hierarchy() 367 let _foo = check_file(&it, ROOT, "foo"); in complex_hierarchy() [all …]
|
D | main.rs | 454 fn check_file(root: &Path, file: &str, content: &[u8]) { in check_file() function 523 check_file(root, "foo", b"0123456789"); in single_file() 585 check_file(root, "a/b2/c1", &[]); in complex_hierarchy() 586 check_file(root, "a/b2/c2/d1", &[]); in complex_hierarchy() 587 check_file(root, "a/b2/c2/d2", &[]); in complex_hierarchy() 588 check_file(root, "a/b2/c2/d3", &[]); in complex_hierarchy() 589 check_file(root, "x/y1", &[]); in complex_hierarchy() 590 check_file(root, "x/y2", &[]); in complex_hierarchy() 591 check_file(root, "foo", &[]); in complex_hierarchy() 592 check_file(root, "bar", &[]); in complex_hierarchy() [all …]
|