Lines Matching defs:FastbootTest
1108 struct FastbootTest { struct
1110 vars: BTreeMap<(&'static str, &'static [&'static str]), &'static str>,
1112 flash_partition: String,
1114 erase_partition: String,
1116 upload_config: (u64, Vec<Vec<u8>>),
1118 fetch_data: BTreeMap<&'static str, (u64, Vec<u8>)>,
1120 oem_output: (String, Vec<String>),
1121 oem_command: String,
1122 download_buffer: Vec<u8>,
1123 downloaded_size: usize,
1124 reboot_mode: Option<RebootMode>,
1125 active_slot: Option<String>,
1128 impl FastbootImplementation for FastbootTest { implementation