/tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/ |
D | RemoteManagerTest.java | 206 verify(mMockDeviceTracker).freeDevice(Mockito.eq("testserial")); in testProcessClientOperations_processFree_notFound() 208 verify(mMockDeviceManager, Mockito.times(0)).freeDevice(Mockito.any(), Mockito.any()); in testProcessClientOperations_processFree_notFound() 218 doReturn(stub).when(mMockDeviceTracker).freeDevice(Mockito.eq("testserial")); in testProcessClientOperations_processFree() 227 verify(mMockDeviceTracker).freeDevice(Mockito.eq("testserial")); in testProcessClientOperations_processFree() 229 .freeDevice(Mockito.eq(stub), Mockito.eq(FreeDeviceState.AVAILABLE)); in testProcessClientOperations_processFree() 252 .freeDevice(Mockito.any(), Mockito.eq(FreeDeviceState.AVAILABLE)); in testProcessClientOperations_processFree_wildcard()
|
D | RemoteManagerFuncTest.java | 78 mMockDeviceManager.freeDevice(EasyMock.eq(device), in testAllocateFree() 137 mMockDeviceManager.freeDevice(EasyMock.eq(device), in testAllocateClose() 161 mMockDeviceManager.freeDevice(EasyMock.eq(device), in testAllocateFreeAll() 255 mMockDeviceManager.freeDevice(EasyMock.eq(device), EasyMock.eq(FreeDeviceState.AVAILABLE)); in testExecCommand() 281 mMockDeviceManager.freeDevice(EasyMock.eq(device), EasyMock.eq(FreeDeviceState.AVAILABLE)); in testConsecutiveExecCommand() 412 mMockDeviceManager.freeDevice(EasyMock.eq(device), EasyMock.eq(FreeDeviceState.AVAILABLE)); in testGetLastCommandResult_noActiveCommand() 437 mMockDeviceManager.freeDevice(EasyMock.eq(device), EasyMock.eq(FreeDeviceState.AVAILABLE)); in testGetLastCommandResult_executing() 469 mMockDeviceManager.freeDevice(EasyMock.eq(device), EasyMock.eq(FreeDeviceState.AVAILABLE)); in testGetLastCommandResult_notAvail()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | DeviceManagerTest.java | 354 manager.freeDevice(mMockTestDevice, FreeDeviceState.AVAILABLE); in testAllocateDevice_match_temporary() 435 manager.freeDevice(emulator, FreeDeviceState.UNAVAILABLE); in testFreeDevice_emulator() 549 manager.freeDevice(mMockTestDevice, FreeDeviceState.AVAILABLE); in testFreeDevice() 567 manager.freeDevice(testDevice, FreeDeviceState.AVAILABLE); in testFreeDevice_noop() 971 manager.freeDevice(tcpDevice, FreeDeviceState.UNAVAILABLE); in testFreeDevice_tcpDevice() 1034 manager.freeDevice(device, FreeDeviceState.UNAVAILABLE); in testFreeDevice_unavailable() 1099 manager.freeDevice(device, FreeDeviceState.UNAVAILABLE); in testFreeDevice_unknown() 1164 manager.freeDevice(device, FreeDeviceState.UNAVAILABLE); in testFreeDevice_unknown_subName()
|
D | MockDeviceManager.java | 201 public void freeDevice(ITestDevice device, FreeDeviceState state) { in freeDevice() method in MockDeviceManager
|
/tools/tradefederation/core/src/com/android/tradefed/device/recovery/ |
D | RunConfigDeviceRecovery.java | 115 getDeviceManager().freeDevice(device, FreeDeviceState.UNAVAILABLE); in recoverDevices() 167 mDeviceManager.freeDevice(device, devicesStates.get(device)); in invocationComplete()
|
/tools/tradefederation/core/src/com/android/tradefed/command/remote/ |
D | RemoteManager.java | 376 ITestDevice d = getDeviceTracker().freeDevice(c.getDeviceSerial()); in processFree() 381 mDeviceManager.freeDevice(d, FreeDeviceState.AVAILABLE); in processFree() 471 mDeviceManager.freeDevice(d, FreeDeviceState.AVAILABLE); in freeAllDevices()
|
D | DeviceTracker.java | 68 public ITestDevice freeDevice(String serial) { in freeDevice() method in DeviceTracker
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | IDeviceManager.java | 98 public void freeDevice(ITestDevice device, FreeDeviceState state); in freeDevice() method
|
D | DeviceManager.java | 608 public void freeDevice(ITestDevice device, FreeDeviceState deviceState) { in freeDevice() method in DeviceManager 814 freeDevice(tcpDevice, FreeDeviceState.IGNORE); in connectToTcpDevice() 855 freeDevice(tcpDevice, FreeDeviceState.IGNORE); in disconnectFromTcpDevice()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/companion/ |
D | CompanionDeviceTracker.java | 91 getDeviceManager().freeDevice(companion, deviceState); in freeCompanionDevice()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/command/ |
D | CommandSchedulerTest.java | 522 mMockManager.freeDevice(dev, FreeDeviceState.AVAILABLE); in testRun_configSerial() 551 mMockManager.freeDevice(dev, FreeDeviceState.AVAILABLE); in testRun_configExcludeSerial() 552 mMockManager.freeDevice(expectedDevice, FreeDeviceState.AVAILABLE); in testRun_configExcludeSerial()
|
/tools/tradefederation/core/src/com/android/tradefed/command/ |
D | CommandScheduler.java | 486 mDeviceManager.freeDevice(device, devicesStates.get(device)); in invocationComplete() 1474 manager.freeDevice(allocatedDevice, deviceState); in allocateDevices()
|