Home
last modified time | relevance | path

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

/bootable/libbootloader/gbl/libgbl/src/fastboot/
Dvars.rs18 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()
Dmod.rs19 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/
Dlib.rs807 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