Searched refs:systemPropertiesClass (Results 1 – 4 of 4) sorted by relevance
30 final Class systemPropertiesClass = Class.forName("android.os.SystemProperties"); in get() local31 if (systemPropertiesClass != null) { in get()33 systemPropertiesClass.getMethod("get", String.class); in get()
53 Class<?> systemPropertiesClass = Class.forName("android.os.SystemProperties"); in getSystemPropertiesGetMethod() local54 if (systemPropertiesClass == null) { in getSystemPropertiesGetMethod()57 systemPropertiesGetMethod = systemPropertiesClass.getMethod("get", String.class); in getSystemPropertiesGetMethod()
209 Class<?> systemPropertiesClass; in readSystemProperty() local211 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()
511 final Class systemPropertiesClass = Class.forName("android.os.SystemProperties"); in getNaiBySystemProperty() local512 if (systemPropertiesClass != null) { in getNaiBySystemProperty()513 final Method method = systemPropertiesClass.getMethod("get", String.class); in getNaiBySystemProperty()