Home
last modified time | relevance | path

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

/platform_testing/libraries/power-helper/src/com/android/helper/
DPowerTestHelper.java80 String value = getProperty(key); in getPropertyString()
103 String value = getProperty(key); in getPropertyLong()
109 private String getProperty(String key) in getProperty() method in PowerTestHelper
117 value = prop.getProperty(key); in getProperty()
/platform_testing/libraries/device-collectors/src/main/java/android/device/collectors/
DGcaEventLogCollector.java67 public String getProperty() { in getProperty() method in GcaEventLogCollector.SeLinuxEnforceProperty
215 Log.d(TAG, "Setting SeLinux enforcing to " + value.getProperty()); in setSeLinuxEnforceProperty()
216 executeCommandBlocking("setenforce " + value.getProperty()); in setSeLinuxEnforceProperty()
/platform_testing/tests/automotive/functional/settings/src/android/platform/tests/
DSystemSettingTest.java93 String kernelVersion = System.getProperty("os.version"); in testKernelVersion()
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/
DResultHandler.java456 serializer.attribute(NS, OS_NAME_ATTR, System.getProperty("os.name")); in writeResults()
457 serializer.attribute(NS, OS_VERSION_ATTR, System.getProperty("os.version")); in writeResults()
458 serializer.attribute(NS, OS_ARCH_ATTR, System.getProperty("os.arch")); in writeResults()
459 serializer.attribute(NS, JAVA_VENDOR_ATTR, System.getProperty("java.vendor")); in writeResults()
460 serializer.attribute(NS, JAVA_VERSION_ATTR, System.getProperty("java.version")); in writeResults()
DBusinessLogicFactory.java264 String lineSeparator = System.getProperty("line.separator"); in readFile()
/platform_testing/libraries/compatibility-common-util/tests/src/com/android/compatibility/common/util/
DResultHandlerTest.java57 private static final String OS_NAME = System.getProperty("os.name");
58 private static final String OS_VERSION = System.getProperty("os.version");
59 private static final String OS_ARCH = System.getProperty("os.arch");
60 private static final String JAVA_VENDOR = System.getProperty("java.vendor");
61 private static final String JAVA_VERSION = System.getProperty("java.version");
/platform_testing/libraries/junitxml/src/com/android/junitxml/
DXmlRunListener.java113 propElement.setAttribute(ATTR_PROPERTY_VALUE, props.getProperty((String) name)); in startTestSuite()