Home
last modified time | relevance | path

Searched refs:waitForDeviceShell (Results 1 – 15 of 15) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDeviceManagerTest.java937 EasyMock.expect(mMockStateMonitor.waitForDeviceShell(EasyMock.anyLong())).andReturn( in setCheckAvailableDeviceExpectations()
989 EasyMock.expect(mMockStateMonitor.waitForDeviceShell(EasyMock.anyLong())) in testFreeDevice_unavailable()
1050 EasyMock.expect(mMockStateMonitor.waitForDeviceShell(EasyMock.anyLong())) in testFreeDevice_recovery()
1114 EasyMock.expect(mMockStateMonitor.waitForDeviceShell(EasyMock.anyLong())) in testFreeDevice_unknown()
1179 EasyMock.expect(mMockStateMonitor.waitForDeviceShell(EasyMock.anyLong())) in testFreeDevice_unknown_subName()
DWaitDeviceRecoveryTest.java82 EasyMock.expect(mMockMonitor.waitForDeviceShell(EasyMock.anyLong())).andReturn(true); in testRecoverDevice_success()
223 EasyMock.expect(mMockMonitor.waitForDeviceShell(EasyMock.anyLong())).andReturn(true); in testRecoverDevice_unresponsive()
255 EasyMock.expect(mMockMonitor.waitForDeviceShell(EasyMock.anyLong())).andReturn(true); in testRecoverDevice_fastboot()
DDeviceStateMonitorTest.java180 boolean res = mMonitor.waitForDeviceShell(WAIT_TIMEOUT_NOT_REACHED_MS); in testWaitForShellAvailable()
221 boolean res = mMonitor.waitForDeviceShell(WAIT_TIMEOUT_NOT_REACHED_MS); in testWaitForShell_becomeAvailable()
252 boolean res = mMonitor.waitForDeviceShell(WAIT_TIMEOUT_REACHED_MS); in testWaitForShell_timeout()
DMockDeviceManager.java73 EasyMock.expect(mockDevice.waitForDeviceShell(EasyMock.anyLong())) in setNumDevicesInternal()
94 public boolean waitForDeviceShell(long waitTime) { in setNumDevicesCustomRealNoRecovery()
/tools/tradefederation/core/tests/src/com/android/tradefed/build/
DBootstrapBuildProviderTest.java60 EasyMock.expect(mMockDevice.waitForDeviceShell(EasyMock.anyLong())).andReturn(true); in testGetBuild()
82 EasyMock.expect(mMockDevice.waitForDeviceShell(EasyMock.anyLong())).andReturn(true); in testGetBuild_add_extra_file()
/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandSchedulerTest.java364 EasyMock.expect(mockDevice.waitForDeviceShell(EasyMock.anyLong())).andReturn(true); in testExecCommand()
1277 EasyMock.expect(mockDevice.waitForDeviceShell(EasyMock.anyLong())).andReturn(true); in testExecCommand_versioning()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DIDeviceStateMonitor.java72 public boolean waitForDeviceShell(final long waitTime); in waitForDeviceShell() method
DINativeDevice.java1203 public boolean waitForDeviceShell(final long waitTime); in waitForDeviceShell() method
/tools/tradefederation/core/src/com/android/tradefed/build/
DBootstrapBuildProvider.java109 if (!device.waitForDeviceShell(mShellAvailableTimeout * 1000)) { in getBuild()
/tools/tradefederation/core/src/com/android/tradefed/device/
DWaitDeviceRecovery.java154 if (!monitor.waitForDeviceShell(mShellWaitTime)) { in recoverDevice()
DNativeDeviceStateMonitor.java176 public boolean waitForDeviceShell(final long waitTime) { in waitForDeviceShell() method in NativeDeviceStateMonitor
DNativeDevice.java4001 public boolean waitForDeviceShell(long waitTime) { in waitForDeviceShell() method in NativeDevice
4002 return mStateMonitor.waitForDeviceShell(waitTime); in waitForDeviceShell()
DDeviceManager.java448 if (testDevice.getMonitor().waitForDeviceShell(CHECK_WAIT_DEVICE_AVAIL_MS)) { in checkAndAddAvailableDevice()
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandScheduler.java821 } else if (!device.waitForDeviceShell(30000)) { in createReleaseMap()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DTestInvocationTest.java2145 EasyMock.expect(mMockDevice.waitForDeviceShell(30000L)).andReturn(true); in setEarlyDeviceReleaseExpectation()