Lines Matching defs:u64
61 pub fn total_size(&self) -> Result<u64> { in total_size()
91 blk_offset: u64, in read_blocks()
107 async fn write_blocks(&mut self, blk_offset: u64, data: &mut [u8]) -> Result<()>; in write_blocks()
123 blk_offset: u64, in read_blocks()
129 async fn write_blocks(&mut self, blk_offset: u64, data: &mut [u8]) -> Result<()> { in write_blocks()
146 _: u64, in read_blocks()
152 async fn write_blocks(&mut self, _: u64, _: &mut [u8]) -> Result<()> { in write_blocks()
170 fn check_range<T>(info: BlockInfo, offset: u64, buffer: &[T]) -> Result<SafeNum> { in check_range()
264 offset: u64, in read()
280 pub async fn write(&mut self, offset: u64, data: &mut [u8]) -> Result<()> { in write()
298 mut offset: u64, in fill()
299 size: u64, in fill()
390 offset: u64, in read_gpt_partition()
414 offset: u64, in write_gpt_partition()
437 pub fn new_ram_alloc(block_size: u64, alignment: u64, storage: T) -> Result<Self> { in new_ram_alloc()
541 rw_offset: u64, in new()
542 rw_size: u64, in new()
543 misalignment: u64, in new()
544 alignment: u64, in new()
545 block_size: u64, in new()
546 storage_size: u64, in new()
560 pub fn new(alignment: u64, size: u64) -> Self { in new()
607 mut write_func: impl FnMut(&mut TestDisk, u64, &mut [u8]), in write_test_helper() argument