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.java48 String propertyValue = device.getProperty(mPropertyName); in run() local
49 if (propertyValue == null) { in run()
55 if (!mExpectedPropertyValue.equalsIgnoreCase(propertyValue)) { in run()
57 mExpectedPropertyValue, propertyValue, mPropertyName); in run()
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DBaseDevicePolicyTest.java364 String propertyValue = getDevice().getProperty(key); in getBooleanSystemProperty() local
365 if (propertyValue == null || propertyValue.isEmpty()) { in getBooleanSystemProperty()
368 if (Arrays.asList(positiveValues).contains(propertyValue)) { in getBooleanSystemProperty()
371 if (Arrays.asList(negativeValues).contains(propertyValue)) { in getBooleanSystemProperty()
374 fail("Unexpected value of boolean system property '" + key + "': " + propertyValue); in getBooleanSystemProperty()