Home | History | Annotate | Download | only in utils

Lines Matching defs:mSharedPreferences

40     private SharedPreferences mSharedPreferences;
43 mSharedPreferences =
51 return mSharedPreferences.getLong(KEY_LAST_CANCEL_ALL_TIME_MS, 0L);
59 return new LastCancelAllLiveData(mSharedPreferences);
68 mSharedPreferences.edit().putLong(KEY_LAST_CANCEL_ALL_TIME_MS, timeMillis).apply();
77 return mSharedPreferences.getBoolean(KEY_MIGRATE_PERSISTED_JOBS, true);
85 mSharedPreferences.edit().putBoolean(KEY_MIGRATE_PERSISTED_JOBS, true).apply();
95 private SharedPreferences mSharedPreferences;
99 mSharedPreferences = sharedPreferences;
100 mLastCancelAllTimeMillis = mSharedPreferences.getLong(KEY_LAST_CANCEL_ALL_TIME_MS, 0L);
118 mSharedPreferences.registerOnSharedPreferenceChangeListener(this);
124 mSharedPreferences.unregisterOnSharedPreferenceChangeListener(this);