Home
last modified time | relevance | path

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

/DragonOS-0.1.7/kernel/src/filesystem/fat/
Dbpb.rs59 pub fat_type: FATType,
66 pub enum FATType { enum
148 impl Default for FATType { implementation
150 return FATType::FAT32(BiosParameterBlockFAT32::default()); in default()
154 impl FATType { implementation
172 FATType::FAT12(_) => current_cluster + (current_cluster / 2), in get_fat_bytes_offset()
173 FATType::FAT16(_) => current_cluster * 2, in get_fat_bytes_offset()
174 FATType::FAT32(_) => current_cluster * 4, in get_fat_bytes_offset()
298 FATType::FAT12(BiosParameterBlockLegacy::default()) in new()
300 FATType::FAT16(BiosParameterBlockLegacy::default()) in new()
[all …]
Dfs.rs28 bpb::{BiosParameterBlock, FATType},
183 blocks: if let FATType::FAT32(_) = fs.bpb.fat_type { in new()
257 FATType::FAT32(bpb32) => { in new()
279 FATType::FAT32(x) => x.fat_size_32 as u64, in new()
302 blocks: if let FATType::FAT32(_) = bpb.fat_type { in new()
354 let fat_type: FATType = self.bpb.fat_type; in get_fat_entry()
380 FATType::FAT12(_) => { in get_fat_entry()
402 FATType::FAT16(_) => { in get_fat_entry()
418 FATType::FAT32(_) => { in get_fat_entry()
449 let fat_type: FATType = self.bpb.fat_type; in get_fat_entry_raw()
[all …]