Lines Matching defs:setting
202 * Retrieves the current boolean value of the specified global setting.
205 * @param setting The setting to be retrieved
208 private static boolean getBooleanGlobalSetting(ContentResolver resolver, String setting) {
209 return 0 != Settings.Global.getInt(resolver, setting, 0);
213 * Sets the boolean value of the specified global setting.
215 * @param setting The setting to be set
218 private void setBooleanGlobalSetting(String setting, boolean value) {
223 setting,