Searched defs:repair (Results 1 - 18 of 18) sorted by relevance

/external/autotest/server/hosts/
H A Drepair.py51 repair and verify framework.
67 def repair(self, host): member in class:RebootRepair
85 repair procedures.
88 def repair(self, host): member in class:RPMCycleRepair
H A Dcros_repair_unittest.py11 from autotest_lib.server.hosts import repair namespace
15 (repair.SshVerifier, 'ssh', ()),
26 (repair.LegacyHostVerifier, 'cros', ('ssh',)),
30 (repair.RPMCycleRepair, 'rpm', (), ('ssh', 'power',)),
53 (repair.SshVerifier, 'ssh', ()),
57 (repair.LegacyHostVerifier, 'cros', ('ssh',)),
61 (repair.RPMCycleRepair, 'rpm', (), ('ssh', 'power',)),
67 (repair.SshVerifier, 'ssh', ()),
78 (repair.LegacyHostVerifier, 'cros', ('ssh',)),
83 (repair
[all...]
H A Dcros_firmware.py8 This contains the repair actions and verifiers need to find problems
32 from all of the verification and repair code in this module.
65 Check if a host supports firmware repair.
190 This repair function attempts to use servo to install the DUT's
193 This repair method only applies to DUTs used for FAFT.
196 def repair(self, host): member in class:FirmwareRepair
199 'Firmware repair is not applicable to host %s.' %
237 * The reason we distinguish repair from verify is to allow
238 rescheduling work immediately while the expensive repair happens
240 once, so it's pointless to pass the buck to repair
[all...]
H A Demulated_adb_host.py250 def repair(self): member in class:EmulatedADBHost
251 """No-op. No repair procedures for emulated devices.
H A Dservo_repair.py11 from autotest_lib.server.hosts import repair namespace
262 def repair(self, host): member in class:_RestartServod
298 class _ServoRebootRepair(repair.RebootRepair):
300 Reboot repair action that also waits for an update.
308 def repair(self, host): member in class:_ServoRebootRepair
318 super(_ServoRebootRepair, self).repair(host)
334 def repair(self, host): member in class:_DutRebootRepair
353 (repair.SshVerifier, 'servo_ssh', []),
373 (repair.RPMCycleRepair, 'rpm', [], ['servo_ssh']),
H A Dcros_repair.py17 from autotest_lib.server.hosts import repair namespace
39 # Triggers for the 'au', 'powerwash', and 'usb' repair actions.
40 # These are also used as dependencies in the `CrosHost` repair
59 # reinstall repair actions, too.
61 # TODO(jrbarnette): AU repair can't fix all problems reported by
76 # ignoring failures. The repair triggers believe that this
358 """Common handling for repair actions that reset a DUT."""
397 def repair(self, host): member in class:ServoSysRqRepair
422 def repair(self, host): member in class:ServoResetRepair
434 class CrosRebootRepair(repair
437 def repair(self, host): member in class:CrosRebootRepair
459 def repair(self, host): member in class:AutoUpdateRepair
475 def repair(self, host): member in class:PowerWashRepair
494 def repair(self, host): member in class:ServoInstallRepair
508 def repair(self, host): member in class:JetstreamRepair
[all...]
H A Dtestbed.py140 def repair(self): member in class:TestBed
141 """Run through repair on all the devices."""
142 # board name is needed for adb_host to repair as the adb_host objects
155 adb_device.repair(board=board, os=info.os)
166 logging.error('Failed to repair device with serial %s, '
169 'Fail to repair %d devices: %s' %
H A Dservo_host.py9 """This file provides core logic for servo verify/repair process."""
617 def repair(self, silent=False): member in class:ServoHost
618 """Attempt to repair servo host.
623 self._repair_strategy.repair(self, silent)
784 This function attempts to create and verify or repair a `ServoHost`
788 host must be created, and must be checked with `repair()`.
792 check it with `repair()`.
796 In cases where `servo_args` was not `None`, repair failure
801 repair not write to `status.log`, so as to avoid polluting test
830 `repair()` instea
[all...]
H A Dadb_host.py466 # creating the host to do a repair job, the device maybe inaccesible
916 def repair(self, board=None, os=None): member in class:ADBHost
922 repair call.
925 be passed in from the testbed repair call.
929 'repair.')
931 # Force to do a reinstall in repair first. The reason is that it
933 # If repair tries to switch the device back to adb mode, one will
940 repair=True, board=board, os=os, subdir_tag=subdir_tag):
942 'Unable to repair the device.')
H A Dcros_host.py294 with `repair()` rather than `verify()`.
348 raise error.AutoservError('Cannot obtain repair image name. '
726 local_devserver=False, repair=False,
739 @param repair: Forces update to repair image. Implies force_update.
754 if repair:
867 local_devserver=False, repair=False,
882 If update_url is None and repair is True we will install the
890 @param repair: Forces update to repair imag
1235 def repair(self): member in class:CrosHost
[all...]
/external/autotest/client/common_lib/hosts/
H A Drepair.py6 Framework for host verification and repair in Autotest.
9 and `Host.repair()` used in Verify and Repair special tasks.
13 * `RepairAction`: A class representing a repair operation that can fix
18 Individual operations during verification and repair are handled by
120 Instances of this exception can be raised when a `repair()`
130 Both repair and verify operations have the notion of dependencies
376 repair actions. If two different failures can require two
400 Abstract class embodying one repair procedure.
405 Each repair action includes one or more verifier triggers that
406 determine when the repair actio
535 def repair(self, host): member in class:RepairAction
758 def repair(self, host, silent=False): member in class:RepairStrategy
[all...]
H A Dbase_classes.py60 # the number of hardware repair requests that need to happen before we
61 # actually send machines to hardware repair
415 def repair(self): member in class:Host
H A Drepair_unittest.py5 """Unit tests for the `repair` module."""
15 from autotest_lib.client.common_lib.hosts import repair namespace
86 @property _fail_count The number of repair attempts required
148 """Exception to be raised by `_StubRepairAction.repair()`."""
156 designed to allow calling unit tests control over whether repair
159 The behavior of `repair()` depends on the `_success` property of a
160 `_StubRepairAction`. When the property is true, repair will call
162 property is false, repair reports failure.
165 `repair()` method.
166 @property message If repair fail
195 def repair(self, host): member in class:_StubRepairAction
[all...]
/external/autotest/server/
H A Dserver_job.py84 REPAIR_CONTROL_FILE = _control_segment_path('repair')
566 def repair(self, labels): member in class:server_job
573 raise error.AutoservError('No machines specified to repair')
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DProfileInfo.cpp635 void ProfileInfoT<Function,BasicBlock>::repair(const Function *F) { function in class:llvm::ProfileInfoT
990 errs() << "ASSERT: could not repair function";
991 assert(0 && "could not repair function");
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 345 milliseconds