Home
last modified time | relevance | path

Searched refs:systemPropertiesClass (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/sms/
DSystemProperties.java30 final Class systemPropertiesClass = Class.forName("android.os.SystemProperties"); in get() local
31 if (systemPropertiesClass != null) { in get()
33 systemPropertiesClass.getMethod("get", String.class); in get()
/packages/apps/Dialer/java/com/android/dialer/oem/
DSystemPropertiesAccessor.java53 Class<?> systemPropertiesClass = Class.forName("android.os.SystemProperties"); in getSystemPropertiesGetMethod() local
54 if (systemPropertiesClass == null) { in getSystemPropertiesGetMethod()
57 systemPropertiesGetMethod = systemPropertiesClass.getMethod("get", String.class); in getSystemPropertiesGetMethod()
/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/utils/
DCarUiUtils.java209 Class<?> systemPropertiesClass; in readSystemProperty() local
211 systemPropertiesClass = Class.forName("android.os.SystemProperties"); in readSystemProperty()
219 getMethod = systemPropertiesClass.getMethod("get", String.class); in readSystemProperty()
227 String value = (String) getMethod.invoke(systemPropertiesClass, params); in readSystemProperty()
/packages/apps/Messaging/src/android/support/v7/mms/
DMmsHttpClient.java511 final Class systemPropertiesClass = Class.forName("android.os.SystemProperties"); in getNaiBySystemProperty() local
512 if (systemPropertiesClass != null) { in getNaiBySystemProperty()
513 final Method method = systemPropertiesClass.getMethod("get", String.class); in getNaiBySystemProperty()