Lines Matching defs:FastbootTest
1061 struct FastbootTest { struct
1063 vars: BTreeMap<(&'static str, &'static [&'static str]), &'static str>,
1065 flash_partition: String,
1067 erase_partition: String,
1069 upload_config: (u64, Vec<Vec<u8>>),
1071 fetch_data: BTreeMap<&'static str, (u64, Vec<u8>)>,
1073 oem_output: (String, Vec<String>),
1074 oem_command: String,
1075 download_buffer: Vec<u8>,
1076 downloaded_size: usize,
1077 reboot_mode: Option<RebootMode>,
1078 active_slot: Option<String>,
1081 impl FastbootImplementation for FastbootTest { implementation