D | chrome_cr50.py | 428 self.wait_for_ccd_disable(timeout, raise_error=False) 559 def wait_for_stable_ccd_state(self, state, timeout, raise_error): argument 579 if raise_error: 589 if raise_error: 596 def wait_for_ccd_disable(self, timeout=60, raise_error=True): argument 598 self.wait_for_stable_ccd_state('off', timeout, raise_error) 602 def wait_for_ccd_enable(self, timeout=60, raise_error=False): argument 604 self.wait_for_stable_ccd_state('on', timeout, raise_error) 608 def ccd_disable(self, raise_error=True): argument 612 self.wait_for_ccd_disable(raise_error=raise_error) [all …]
|