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 465 public ITestDevice allocateDevice() {
466 return allocateDevice(ANY_DEVICE_OPTIONS);
473 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 262 * Test @link DeviceManager#allocateDevice()} when a IDevice is present on DeviceManager
272 assertNotNull(manager.allocateDevice());
277 * Test {@link DeviceManager#allocateDevice(IDeviceSelection)} when device is
288 assertEquals(mMockTestDevice, manager.allocateDevice(options));
293 * Test {@link DeviceManager#allocateDevice(IDeviceSelection)} when stub emulator
308 assertNotNull(mgr.allocateDevice(options));
336 IManagedTestDevice emulator = (IManagedTestDevice) manager.allocateDevice(options);
342 assertNotNull(manager.allocateDevice(options));
347 * Test {@link DeviceManager#allocateDevice(IDeviceSelection)} when a null device
362 ITestDevice device = mgr.allocateDevice(options)
    [all...]

Completed in 3431 milliseconds