Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/oem/
DSystemPropertiesAccessor.java29 private Method systemPropertiesGetMethod; field in SystemPropertiesAccessor
33 Method systemPropertiesGetMethod = getSystemPropertiesGetMethod(); in get() local
34 if (systemPropertiesGetMethod == null) { in get()
39 return (String) systemPropertiesGetMethod.invoke(null, name); in get()
48 if (systemPropertiesGetMethod != null) { in getSystemPropertiesGetMethod()
49 return systemPropertiesGetMethod; in getSystemPropertiesGetMethod()
57 systemPropertiesGetMethod = systemPropertiesClass.getMethod("get", String.class); in getSystemPropertiesGetMethod()
58 return systemPropertiesGetMethod; in getSystemPropertiesGetMethod()