Home
last modified time | relevance | path

Searched refs:systemPropertiesClass (Results 1 – 3 of 3) 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/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()