Home
last modified time | relevance | path

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

/aosp12/packages/apps/Messaging/src/com/android/messaging/sms/
H A 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()
/aosp12/packages/apps/Dialer/java/com/android/dialer/oem/
H A 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()
/aosp12/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/utils/
H A DCarUiUtils.java231 Class<?> systemPropertiesClass; in readSystemProperty() local
233 systemPropertiesClass = Class.forName("android.os.SystemProperties"); in readSystemProperty()
241 getMethod = systemPropertiesClass.getMethod("get", String.class); in readSystemProperty()
249 String value = (String) getMethod.invoke(systemPropertiesClass, params); in readSystemProperty()
/aosp12/packages/apps/Messaging/src/android/support/v7/mms/
H A 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()