Home
last modified time | relevance | path

Searched refs:propertyValue (Results 1 – 2 of 2) sorted by relevance

/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
DPropertyCheck.java50 String propertyValue = device.getProperty(mPropertyName); in run() local
51 if (propertyValue == null) { in run()
57 if (!mExpectedPropertyValue.equalsIgnoreCase(propertyValue)) { in run()
59 mExpectedPropertyValue, propertyValue, mPropertyName); in run()
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DBaseDevicePolicyTest.java261 String propertyValue = getDevice().getProperty(key); in getBooleanSystemProperty() local
262 if (propertyValue == null || propertyValue.isEmpty()) { in getBooleanSystemProperty()
265 if (Arrays.asList(positiveValues).contains(propertyValue)) { in getBooleanSystemProperty()
268 if (Arrays.asList(negativeValues).contains(propertyValue)) { in getBooleanSystemProperty()
271 fail("Unexpected value of boolean system property '" + key + "': " + propertyValue); in getBooleanSystemProperty()