Home
last modified time | relevance | path

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

/bootable/libbootloader/gbl/libgbl/src/fastboot/
Dmod.rs215 fn fetch( in fetch() method
359 fn fetch( in fetch() function
373 res = fb.fetch(part.as_str(), off, size, upload_builder, &mut utils) in fetch()
390 assert!(fetch(&mut fb, "::0:0".into(), 0, 0).is_err()); in test_fetch_invalid_partition_arg()
393 assert!(fetch(&mut fb, "non:::".into(), 0, 0).is_err()); in test_fetch_invalid_partition_arg()
396 assert!(fetch(&mut fb, "vendor_boot_a:::".into(), 0, 0).is_err()); in test_fetch_invalid_partition_arg()
399 assert!(fetch(&mut fb, "boot_a::0x2001:".into(), 0, 1).is_err()); in test_fetch_invalid_partition_arg()
400 assert!(fetch(&mut fb, "boot_a".into(), 0x2000, 1).is_err()); in test_fetch_invalid_partition_arg()
403 assert!(fetch(&mut fb, "boot_a:::0x2001".into(), 0, 0).is_err()); in test_fetch_invalid_partition_arg()
404 assert!(fetch(&mut fb, "boot_a".into(), 0, 0x2001).is_err()); in test_fetch_invalid_partition_arg()
[all …]
/bootable/libbootloader/gbl/docs/
Dgbl_fastboot.md16 Certain fastboot commands such as `fastboot flash`, `fastboot fetch` and
/bootable/libbootloader/gbl/libfastboot/src/
Dlib.rs327 fn fetch( in fetch() method
640 "fetch" => self.fetch(&cmd_str, args, transport, fb_impl)?, in process_next_packet()
862 pub fn fetch( in fetch() method
884 fb_impl.fetch(part, hex_to_u64(off)?, hex_to_u64(sz)?, upload_builder, &mut utils) in fetch()
1073 fn fetch( in fetch() method