Home
last modified time | relevance | path

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

/bootable/libbootloader/gbl/libstorage/src/
Dlib.rs294 let res = with_partitioned_scratch( in next()
347 with_partitioned_scratch(self, |io, _, _, _| io.block_size()) in block_size()
352 with_partitioned_scratch(self, |io, _, _, _| io.num_blocks()) in num_blocks()
370 with_partitioned_scratch(self, |io, alignment, _, _| read(io, offset, out, alignment))? in read()
387 with_partitioned_scratch(self, |io, alignment_scratch, _, _| { in write()
400 with_partitioned_scratch(self, |io, alignment_scratch, gpt_buffer, max_entries| { in sync_gpt()
423 with_partitioned_scratch(self, |io, _, gpt_buffer, _| { in find_partition()
445 let offset = with_partitioned_scratch(self, |_, _, gpt_buffer, _| { in read_gpt_partition()
468 let offset = with_partitioned_scratch(self, |_, _, gpt_buffer, _| { in write_gpt_partition()
515 pub(crate) fn with_partitioned_scratch<F, R>( in with_partitioned_scratch() function