Lines Matching refs:inode_data
252 let inode_data = it.get(inode); in check_dir() localVariable
253 assert!(inode_data.is_some()); in check_dir()
254 let inode_data = inode_data.unwrap(); in check_dir() localVariable
255 assert_eq!(0, inode_data.size); in check_dir()
256 assert!(inode_data.is_dir()); in check_dir()
265 let inode_data = it.get(inode); in check_file() localVariable
266 assert!(inode_data.is_some()); in check_file()
267 let inode_data = inode_data.unwrap(); in check_file() localVariable
268 assert!(!inode_data.is_dir()); in check_file()
269 inode_data in check_file()
286 let inode_data = check_file(&it, ROOT, "foo"); in one_file() localVariable
287 assert_eq!(b"0123456789".len() as u64, inode_data.size); in one_file()