Home
last modified time | relevance | path

Searched refs:VARIANT_LEGACY (Results 1 – 5 of 5) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceProperties.java28 public static final String VARIANT_LEGACY = "ro.product.device"; field in DeviceProperties
DDeviceSelectionOptions.java548 prop = getProperty(device, DeviceProperties.VARIANT_LEGACY); in getDeviceProductVariant()
DNativeDevice.java519 DeviceProperties.VARIANT_LEGACY, "variant", "Product variant"); in getProductVariant()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDeviceSelectionOptionsTest.java154 EasyMock.expect(mMockDevice.getProperty(DeviceProperties.VARIANT_LEGACY))
166 EasyMock.expect(mMockDevice.getProperty(DeviceProperties.VARIANT_LEGACY))
192 EasyMock.expect(mMockDevice.getProperty(DeviceProperties.VARIANT_LEGACY)).andReturn(null);
208 EasyMock.expect(mMockDevice.getProperty(DeviceProperties.VARIANT_LEGACY)).andReturn(null);
DNativeDeviceTest.java2189 if (DeviceProperties.VARIANT_LEGACY.equals(propName)) { in testGetProductVariant_legacy()