Home
last modified time | relevance | path

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

/bootable/recovery/
D.clang-format2 # local style file in `.clang-format`. This will be triggered automatically with `repo upload`.
17 # Note that `repo upload` calls the `clang-format` binary in Android repo (i.e.
/bootable/libbootloader/gbl/libfastboot/src/
Dlib.rs312 fn upload( in upload() method
501 pub fn upload(&mut self, data: &[u8]) -> Result<(), CommandError> { in upload() method
639 "upload" => self.upload(transport, fb_impl)?, in process_next_packet()
845 fn upload( in upload() method
854 fb_impl.upload(upload_builder, &mut utils) in upload()
1065 fn upload( in upload() method
1436 uploader.upload(&to_send[..download_len / 2]).unwrap(); in test_upload()
1437 uploader.upload(&to_send[download_len / 2..]).unwrap(); in test_upload()
1467 uploader.upload(&[0u8; 0x400 - 1]).unwrap(); in test_upload_not_enough_data()
1484 uploader.upload(&[0u8; 0x400 + 1])?; in test_upload_more_data()
[all …]
/bootable/libbootloader/gbl/libgbl/src/fastboot/
Dmod.rs207 fn upload( in upload() method
233 uploader.upload(&mut buffer[..to_usize(to_send)?])?; in fetch()