Searched refs:mSharedPrefs (Results 1 – 2 of 2) sorted by relevance
40 private SharedPreferences mSharedPrefs; field in ClearApplicationDataTest45 mSharedPrefs = mContext.getSharedPreferences(SHARED_PREFERENCE_NAME, Context.MODE_PRIVATE); in setUp()50 mSharedPrefs.edit().putBoolean(I_WAS_HERE, true).commit(); in testWriteToSharedPreference()51 assertTrue(mSharedPrefs.contains(I_WAS_HERE)); in testWriteToSharedPreference()56 assertFalse(mSharedPrefs.contains(I_WAS_HERE)); in testSharedPreferenceCleared()
86 private SharedPreferences mSharedPrefs; field in DirectoryProvider103 mSharedPrefs = getContext().getSharedPreferences(CONFIG_NAME, Context.MODE_PRIVATE); in onCreate()212 mSharedPrefs.edit().putString(SET_CUSTOM_PREFIX, arg).apply(); in call()252 return mSharedPrefs.getString(SET_CUSTOM_PREFIX, ""); in getPrefix()