Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/notification/
DPreferencesHelper.java212 private SparseBooleanArray mLockScreenShowNotifications; field in PreferencesHelper
2864 if (mLockScreenShowNotifications == null) { in updateLockScreenShowNotifications()
2865 mLockScreenShowNotifications = new SparseBooleanArray(); in updateLockScreenShowNotifications()
2869 for (int index = 0; index < mLockScreenShowNotifications.size(); index++) { in updateLockScreenShowNotifications()
2870 int userId = mLockScreenShowNotifications.keyAt(index); in updateLockScreenShowNotifications()
2871 final boolean oldValue = mLockScreenShowNotifications.get(userId); in updateLockScreenShowNotifications()
2874 mLockScreenShowNotifications.put(userId, newValue); in updateLockScreenShowNotifications()
2884 if (mLockScreenShowNotifications == null) { in canShowNotificationsOnLockscreen()
2885 mLockScreenShowNotifications = new SparseBooleanArray(); in canShowNotificationsOnLockscreen()
2887 return mLockScreenShowNotifications.get(userId, true); in canShowNotificationsOnLockscreen()