Searched refs:bootability (Results 1 – 3 of 3) sorted by relevance
/bootable/libbootloader/gbl/libgbl/src/slots/ |
D | fuchsia.rs | 168 let bootability = match (abr_slot.successful, abr_slot.tries) { in get_slot_by_number() localVariable 174 Ok(Slot { suffix, priority: abr_slot.priority.into(), bootability }) in get_slot_by_number() 196 if slot.bootability == Bootability::Unbootable(reason) { in set_slot_unbootable() 227 match slot.bootability { in mark_boot_attempt() 314 bootability: Bootability::Retriable(sb.get_max_retries()), in test_slot_block_defaults() 319 bootability: Bootability::Retriable(sb.get_max_retries()), in test_slot_block_defaults() 378 bootability: Bootability::Retriable((DEFAULT_RETRIES - 1).into()) in test_slot_mark_boot_attempt() 397 bootability: Bootability::Retriable((DEFAULT_RETRIES - 1).into()) in test_slot_mark_boot_attempt_tracks_active() 412 bootability: Bootability::Unbootable(UnbootableReason::NoMoreTries) in test_slot_mark_boot_attempt_no_more_tries() 424 bootability: Bootability::Successful, in test_slot_mark_boot_attempt_successful() [all …]
|
D | android.rs | 272 let bootability = match (slot_data.successful(), slot_data.tries()) { in get_slot_by_number() localVariable 278 Ok(Slot { suffix, priority: slot_data.priority().into(), bootability }) in get_slot_by_number() 308 if slot.bootability == Bootability::Unbootable(reason) { in set_slot_unbootable() 336 match slot.bootability { in mark_boot_attempt() 397 bootability: Bootability::Retriable(sb.get_max_retries()), in test_slot_block_defaults() 417 bootability: Bootability::Retriable(sb.get_max_retries()), in test_slot_block_fewer_slots() 528 bootability: Bootability::Retriable((DEFAULT_RETRIES - 1).into()) in test_slot_mark_boot_attempt() 548 bootability: Bootability::Unbootable(UnbootableReason::Unknown) in test_slot_mark_boot_attempt_no_more_tries() 566 bootability: Bootability::Successful, in test_slot_mark_boot_attempt_successful()
|
/bootable/libbootloader/gbl/libgbl/src/ |
D | slots.rs | 196 pub bootability: Bootability, field 203 !matches!(self.bootability, Bootability::Unbootable(_)) in is_bootable()
|