Home
last modified time | relevance | path

Searched refs:DeviceRequestedType (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceSelectionOptions.java46 public enum DeviceRequestedType { enum in DeviceSelectionOptions
62 DeviceRequestedType(Class<?> requiredIDeviceClass) { in DeviceRequestedType() method in DeviceSelectionOptions.DeviceRequestedType
111 private DeviceRequestedType mRequestedType = null;
275 return mRequestedType.equals(DeviceRequestedType.LOCAL_EMULATOR); in emulatorRequested()
286 return mRequestedType.equals(DeviceRequestedType.LOCAL_EMULATOR); in stubEmulatorRequested()
297 return mRequestedType.equals(DeviceRequestedType.NULL_DEVICE); in nullDeviceRequested()
306 return mRequestedType.equals(DeviceRequestedType.GCE_DEVICE); in gceDeviceRequested()
316 return DeviceRequestedType.REMOTE_DEVICE.equals(mRequestedType); in remoteDeviceRequested()
320 return DeviceRequestedType.LOCAL_VIRTUAL_DEVICE.equals(mRequestedType); in localVirtualDeviceRequested()
351 public void setDeviceTypeRequested(DeviceRequestedType requestedType) { in setDeviceTypeRequested()
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/invoker/
DRemoteInvocationExecutionTest.java36 import com.android.tradefed.device.DeviceSelectionOptions.DeviceRequestedType;
100 selection.setDeviceTypeRequested(DeviceRequestedType.REMOTE_DEVICE); in testCreateRemoteConfig()
/tools/tradefederation/core/src/com/android/tradefed/sandbox/
DTradefedSandbox.java171 if (DeviceSelectionOptions.DeviceRequestedType.GCE_DEVICE.equals( in run()
176 DeviceSelectionOptions.DeviceRequestedType.EXISTING_DEVICE.name()); in run()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DRemoteInvocationExecution.java35 import com.android.tradefed.device.DeviceSelectionOptions.DeviceRequestedType;
712 .setDeviceTypeRequested(DeviceRequestedType.NULL_DEVICE); in createRemoteConfig()