Home
last modified time | relevance | path

Searched refs:read_exact (Results 1 – 4 of 4) sorted by relevance

/DragonOS/kernel/src/filesystem/fat/
H A Dbpb.rs231 cursor.read_exact(&mut bpb.jmp_boot)?; in new()
232 cursor.read_exact(&mut bpb.oem_name)?; in new()
259 cursor.read_exact(&mut bpb32.reserved0)?; in new()
260 cursor.read_exact(&mut bpb32.volume_label)?; in new()
261 cursor.read_exact(&mut bpb32.filesystem_type)?; in new()
H A Dentry.rs2445 cursor.read_exact(&mut short_dentry.name)?; in get_raw_dir_entry()
/DragonOS/user/apps/test-blockcache/src/
H A Dmain.rs16 let bytes_read = file.read_exact(&mut buffer)?; in main()
/DragonOS/kernel/src/libs/
H A Dvec_cursor.rs102 pub fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), SystemError> { in read_exact() method