Home
last modified time | relevance | path

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

/frameworks/support/work/workmanager/src/main/java/androidx/work/impl/utils/
DPreferences.java37 private static final String KEY_LAST_CANCEL_ALL_TIME_MS = "last_cancel_all_time_ms"; field in Preferences
51 return mSharedPreferences.getLong(KEY_LAST_CANCEL_ALL_TIME_MS, 0L); in getLastCancelAllTimeMillis()
68 mSharedPreferences.edit().putLong(KEY_LAST_CANCEL_ALL_TIME_MS, timeMillis).apply(); in setLastCancelAllTimeMillis()
100 mLastCancelAllTimeMillis = mSharedPreferences.getLong(KEY_LAST_CANCEL_ALL_TIME_MS, 0L); in LastCancelAllLiveData()
106 if (KEY_LAST_CANCEL_ALL_TIME_MS.equals(key)) { in onSharedPreferenceChanged()