Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
DGenerationRegistryTest.java56 final int systemKey = SettingsState.makeKey(SettingsState.SETTINGS_TYPE_SYSTEM, 0); in testGenerationsWithRegularSetting() local
58 generationRegistry.addGenerationData(b, systemKey, testSystemSetting); in testGenerationsWithRegularSetting()
63 generationRegistry.addGenerationData(b, systemKey, testSystemSetting2); in testGenerationsWithRegularSetting()
67 generationRegistry.incrementGeneration(systemKey, testSystemSetting); in testGenerationsWithRegularSetting()
68 generationRegistry.incrementGeneration(systemKey, testSystemSetting); in testGenerationsWithRegularSetting()
69 generationRegistry.addGenerationData(b, systemKey, testSystemSetting); in testGenerationsWithRegularSetting()
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DGenerationRegistry.java191 final int systemKey = SettingsState.makeKey( in onUserRemoved() local
199 if (mKeyToIndexMapMap.containsKey(systemKey)) { in onUserRemoved()
200 destroyBackingStoreLocked(systemKey); in onUserRemoved()
201 mKeyToIndexMapMap.remove(systemKey); in onUserRemoved()
DSettingsProvider.java3161 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
3162 ensureSettingsStateLocked(systemKey);
3189 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
3190 final SettingsState systemSettingsState = mSettingsStates.get(systemKey);
3193 mSettingsStates.remove(systemKey);
3196 systemSettingsState.destroyLocked(() -> mSettingsStates.remove(systemKey));
3496 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
3497 SettingsState systemSettings = mSettingsStates.get(systemKey);
3567 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
3568 ensureSettingsStateLocked(systemKey);
[all …]