Home
last modified time | relevance | path

Searched refs:allocateDevice (Results 1 – 9 of 9) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDeviceManagerTest.java291 assertNotNull(manager.allocateDevice()); in testAllocateDevice()
307 assertEquals(mMockTestDevice, manager.allocateDevice(options)); in testAllocateDevice_match()
327 assertNotNull(mgr.allocateDevice(options)); in testAllocateDevice_stubEmulator()
355 IManagedTestDevice emulator = (IManagedTestDevice) manager.allocateDevice(options); in testFreeDevice_emulator()
361 assertNotNull(manager.allocateDevice(options)); in testFreeDevice_emulator()
381 ITestDevice device = mgr.allocateDevice(options); in testAllocateDevice_nullDevice()
413 assertNotNull(manager.allocateDevice()); in testAllocateDevice_fastboot()
457 assertNotNull(manager.allocateDevice()); in testForceAllocateDevice_alreadyAllocated()
475 assertNotNull(manager.allocateDevice()); in testFreeDevice()
518 ITestDevice device = manager.allocateDevice(); in testSetIDevice()
[all …]
DMockDeviceManager.java189 public ITestDevice allocateDevice() { in allocateDevice() method in MockDeviceManager
248 public ITestDevice allocateDevice(IDeviceSelection options) { in allocateDevice() method in MockDeviceManager
/tools/tradefederation/core/src/com/android/tradefed/device/
DIDeviceManager.java59 public ITestDevice allocateDevice(); in allocateDevice() method
68 public ITestDevice allocateDevice(IDeviceSelection options); in allocateDevice() method
DDeviceManager.java487 public ITestDevice allocateDevice() { in allocateDevice() method in DeviceManager
488 return allocateDevice(ANY_DEVICE_OPTIONS); in allocateDevice()
495 public ITestDevice allocateDevice(IDeviceSelection options) { in allocateDevice() method in DeviceManager
/tools/tradefederation/core/src/com/android/tradefed/command/remote/
DDeviceTracker.java58 public void allocateDevice(ITestDevice d) { in allocateDevice() method in DeviceTracker
DRemoteManager.java364 getDeviceTracker().allocateDevice(allocatedDevice); in processAllocate()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/companion/
DCompanionDeviceTracker.java62 ITestDevice companion = getDeviceManager().allocateDevice(opt); in allocateCompanionDevice()
/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandSchedulerTest.java496 ITestDevice dev = mMockManager.allocateDevice(); in testRun_configSerial()
523 ITestDevice dev = mMockManager.allocateDevice(); in testRun_configExcludeSerial()
525 ITestDevice expectedDevice = mMockManager.allocateDevice(); in testRun_configExcludeSerial()
884 ITestDevice t = mMockManager.allocateDevice(); in testDeviceRecoveryState()
/tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/
DRemoteManagerTest.java190 verify(mMockDeviceTracker).allocateDevice(Mockito.any()); in testProcessClientOperations_allocateDevice()