Searched refs:mSharedPrefs (Results 1 – 3 of 3) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/plugins/ |
H A D | PluginPrefs.java | 37 private final SharedPreferences mSharedPrefs; field in PluginPrefs 40 mSharedPrefs = context.getSharedPreferences(PREFS, 0); in PluginPrefs() 41 mPluginActions = new ArraySet<>(mSharedPrefs.getStringSet(PLUGIN_ACTIONS, null)); in PluginPrefs() 50 mSharedPrefs.edit().putStringSet(PLUGIN_ACTIONS, mPluginActions).apply(); in addAction()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/ |
H A D | PeopleSpaceWidgetManager.java | 131 private SharedPreferences mSharedPrefs; field in PeopleSpaceWidgetManager 170 mSharedPrefs = PreferenceManager.getDefaultSharedPreferences(mContext); in PeopleSpaceWidgetManager() 256 mSharedPrefs = PreferenceManager.getDefaultSharedPreferences(context); in PeopleSpaceWidgetManager() 416 String contactUri = mSharedPrefs.getString(String.valueOf(appWidgetId), null); in getTileFromPersistentStorage() 597 String contactUriString = mSharedPrefs.getString(String.valueOf(widgetId), null); in getAugmentedTileForExistingWidget() 611 return new HashSet<>(mSharedPrefs.getStringSet(key.toString(), new HashSet<>())); in getMatchingKeyWidgetIds() 661 new HashSet<>(mSharedPrefs.getStringSet(contactUri, new HashSet<>())); in fetchMatchingUriWidgetIds() 919 mSharedPrefs.getStringSet(key.toString(), new HashSet<>())); in deleteWidgets() 920 contactUriString = mSharedPrefs.getString(String.valueOf(widgetId), null); in deleteWidgets()
|
/aosp14/frameworks/base/services/core/java/com/android/server/hdmi/ |
H A D | HdmiCecConfig.java | 119 @NonNull private final SharedPreferences mSharedPrefs; field in HdmiCecConfig.StorageAdapter 129 mSharedPrefs = deviceContext.getSharedPreferences(prefsFile, Context.MODE_PRIVATE); in StorageAdapter() 173 return mSharedPrefs.getString(storageKey, defaultValue); in retrieveSharedPref() 181 mSharedPrefs.edit().putString(storageKey, value).apply(); in storeSharedPref()
|