Home
last modified time | relevance | path

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

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/
DSettingsToPropertiesMapperTest.java116 for (String globalSetting : SettingsToPropertiesMapper.sGlobalSettings) { in validateRegisteredGlobalSettings()
117 if (hashSet.contains(globalSetting)) { in validateRegisteredGlobalSettings()
119 + globalSetting in validateRegisteredGlobalSettings()
123 hashSet.add(globalSetting); in validateRegisteredGlobalSettings()
124 if (TextUtils.isEmpty(globalSetting)) { in validateRegisteredGlobalSettings()
127 if (!globalSetting.matches(NAME_VALID_CHARACTERS_REGEX)) { in validateRegisteredGlobalSettings()
128 Assert.fail(globalSetting + " contains invalid characters. " in validateRegisteredGlobalSettings()
/frameworks/base/services/core/java/com/android/server/am/
DSettingsToPropertiesMapper.java267 for (String globalSetting : mGlobalSettings) { in updatePropertiesFromSettings()
268 Uri settingUri = Settings.Global.getUriFor(globalSetting); in updatePropertiesFromSettings()
269 String propName = makePropertyName(GLOBAL_SETTINGS_CATEGORY, globalSetting); in updatePropertiesFromSettings()
271 logErr("setting uri is null for globalSetting " + globalSetting); in updatePropertiesFromSettings()
275 logErr("invalid prop name for globalSetting " + globalSetting); in updatePropertiesFromSettings()
282 updatePropertyFromSetting(globalSetting, propName); in updatePropertiesFromSettings()
289 updatePropertyFromSetting(globalSetting, propName); in updatePropertiesFromSettings()
/frameworks/base/services/robotests/src/com/android/server/location/gnss/
DGnssSatelliteBlocklistHelperTest.java149 private static void notifyContentObserverFor(String globalSetting) { in notifyContentObserverFor() argument
152 .getContentObservers(Settings.Global.getUriFor(globalSetting)); in notifyContentObserverFor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/user/data/repository/
DUserSwitcherRepository.kt64 private val globalSetting: GlobalSettings, constant in com.android.systemui.user.data.repository.UserSwitcherRepositoryImpl
78 globalSetting, in <lambda>()
/frameworks/base/core/java/android/os/
DGraphicsEnvironment.java352 String globalSetting) { in getGlobalSettingsString() argument
357 settingsValue = bundle.getString(globalSetting); in getGlobalSettingsString()
359 settingsValue = Settings.Global.getString(contentResolver, globalSetting); in getGlobalSettingsString()