HomeSort by relevance Sort by last modified time
    Searched defs:allocateDevice (Results 1 - 5 of 5) sorted by null

  /tools/tradefederation/core/src/com/android/tradefed/command/remote/
DeviceTracker.java 58 public void allocateDevice(ITestDevice d) {
  /tools/tradefederation/core/src/com/android/tradefed/device/
IDeviceManager.java 59 public ITestDevice allocateDevice();
68 public ITestDevice allocateDevice(IDeviceSelection options);
DeviceManager.java 487 public ITestDevice allocateDevice() {
488 return allocateDevice(ANY_DEVICE_OPTIONS);
495 public ITestDevice allocateDevice(IDeviceSelection options) {
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
MockDeviceManager.java 189 public ITestDevice allocateDevice() {
248 public ITestDevice allocateDevice(IDeviceSelection options) {
DeviceManagerTest.java 281 * Test @link DeviceManager#allocateDevice()} when a IDevice is present on DeviceManager
291 assertNotNull(manager.allocateDevice());
296 * Test {@link DeviceManager#allocateDevice(IDeviceSelection)} when device is
307 assertEquals(mMockTestDevice, manager.allocateDevice(options));
312 * Test {@link DeviceManager#allocateDevice(IDeviceSelection)} when stub emulator
327 assertNotNull(mgr.allocateDevice(options));
355 IManagedTestDevice emulator = (IManagedTestDevice) manager.allocateDevice(options);
361 assertNotNull(manager.allocateDevice(options));
366 * Test {@link DeviceManager#allocateDevice(IDeviceSelection)} when a null device
381 ITestDevice device = mgr.allocateDevice(options)
    [all...]

Completed in 406 milliseconds