Searched refs:next_arg_u64 (Results 1 – 3 of 3) sorted by relevance
/bootable/libbootloader/gbl/libgbl/src/fastboot/ |
D | vars.rs | 18 use fastboot::{next_arg, next_arg_u64, snprintf, CommandError, FormattedBytes}; 140 let id = next_arg_u64(&mut args, Err("Missing block device ID".into()))?; in get()
|
D | mod.rs | 19 next_arg, next_arg_u64, CommandError, FastbootImplementation, FastbootUtils, UploadBuilder, 137 let blk_id = next_arg_u64(&mut args, Err("".into())).ok(); in parse_partition() 139 let window_start = next_arg_u64(&mut args, Ok(0))?; in parse_partition() 155 let window_size = next_arg_u64(&mut args, Ok(max_size))?; in parse_partition()
|
/bootable/libbootloader/gbl/libfastboot/src/ |
D | lib.rs | 807 usize::try_from(next_arg_u64(&mut args, Err("Not enough argument".into()))?) in download() 995 pub fn next_arg_u64<'a, T: Iterator<Item = &'a str>>( in next_arg_u64() function
|