Home
last modified time | relevance | path

Searched refs:BOARD (Results 1 – 7 of 7) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceProperties.java24 public static final String BOARD = "ro.product.board"; field in DeviceProperties
DDeviceSelectionOptions.java533 String prop = getProperty(device, DeviceProperties.BOARD); in getDeviceProductType()
DNativeDevice.java477 String productType = internalGetProperty(DeviceProperties.BOARD, "product", "Product type"); in internalGetProductType()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDeviceSelectionOptionsTest.java178 EasyMock.expect(mMockDevice.getProperty(DeviceProperties.BOARD)).andReturn(DEVICE_TYPE);
190 EasyMock.expect(mMockDevice.getProperty(DeviceProperties.BOARD)).andReturn(DEVICE_TYPE);
206 EasyMock.expect(mMockDevice.getProperty(DeviceProperties.BOARD)).andReturn(DEVICE_TYPE);
DTestDeviceFuncTest.java768 assertNotNull(getDevice().getProperty(DeviceProperties.BOARD)); in testGetProperty()
770 assertNotNull(getDevice().getProperty(DeviceProperties.BOARD)); in testGetProperty()
DTestDeviceTest.java374 EasyMock.expect(mMockIDevice.getProperty(DeviceProperties.BOARD)).andReturn(null); in testGetProductType_adb()
376 injectSystemProperty(DeviceProperties.BOARD, expectedOutput); in testGetProductType_adb()
387 injectSystemProperty(DeviceProperties.BOARD, null).times(3); in testGetProductType_adbFail()
DDeviceManagerTest.java1112 … EasyMock.expect(mMockIDevice.getProperty(DeviceProperties.BOARD)).andReturn("hardware_test"); in setDeviceDescriptorExpectation()