HomeSort by relevance Sort by last modified time
    Searched refs:badDevice (Results 1 - 2 of 2) sorted by null

  /tools/tradefederation/core/src/com/android/tradefed/invoker/
TestInvocation.java 295 ITestDevice badDevice = null;
306 badDevice = context.getDeviceBySerial(e.getDeviceDescriptor().getSerial());
308 if (badDevice == null) {
311 badDevice.setRecoveryMode(RecoveryMode.NONE);
320 badDevice = context.getDeviceBySerial(e.getDeviceDescriptor().getSerial());
327 badDevice = context.getDeviceBySerial(e.getSerial());
328 if ((e instanceof DeviceUnresponsiveException) && badDevice != null
329 && TestDeviceState.ONLINE.equals(badDevice.getDeviceState())) {
341 if (badDevice != null) {
342 badDevice.setRecoveryMode(RecoveryMode.NONE)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/command/
CommandScheduler.java 571 ITestDevice badDevice = mInvocationContext.getDeviceBySerial(e.getSerial());
572 if (badDevice != null) {
573 deviceStates.put(badDevice, FreeDeviceState.UNRESPONSIVE);
578 ITestDevice badDevice = mInvocationContext.getDeviceBySerial(e.getSerial());
579 if (badDevice != null) {
580 deviceStates.put(badDevice, FreeDeviceState.UNAVAILABLE);
    [all...]

Completed in 167 milliseconds