Lines Matching refs:verify_images

416         if !self.verify_images(&flash, 0, 1) {  in run_basic_upgrade()
437 if !self.verify_images(&flash, 0, 1) { in run_bootstrap()
481 if !self.verify_images(&flash, 0, 0) { in run_basic_revert()
500 if !self.verify_images(&flash, 0, 1) { in run_perm_with_fails()
517 if self.is_swap_upgrade() && !self.verify_images(&flash, 1, 0) { in run_perm_with_fails()
538 let primary_slot_ok = self.verify_images(&flash, 0, 1); in run_perm_with_random_fails()
541 self.verify_images(&flash, 1, 0) in run_perm_with_random_fails()
610 if !self.verify_images(&flash, 0, 1) { in run_norevert()
646 if !self.verify_images(&flash, 0, 1) { in run_norevert()
677 if !self.verify_images(&flash, 0, 0) { in run_nodowngrade()
716 if !self.verify_images(&flash, 0, 0) { in run_norevert_newimage()
765 if !self.verify_images(&flash, 0, 0) { in run_signfail_upgrade()
802 if !self.verify_images(&flash, 0, 0) { in run_secondary_leftover_trailer()
862 if !self.verify_images(&flash, 0, 1) { in run_with_status_fails_complete()
1051 if !self.verify_images(&flash, 0, 1) { in try_revert_with_fail_at()
1056 if !self.verify_images(&flash, 1, 0) { in try_revert_with_fail_at()
1086 if !self.verify_images(&flash, 0, 0) { in try_revert_with_fail_at()
1091 if !self.verify_images(&flash, 1, 1) { in try_revert_with_fail_at()
1114 if !self.verify_images(&flash, 0, 0) { in try_revert_with_fail_at()
1118 if !self.verify_images(&flash, 1, 1) { in try_revert_with_fail_at()
1157 fn verify_images(&self, flash: &SimMultiFlash, slot: usize, against: usize) -> bool { in verify_images() method