Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DPreferencesHelper.java202 private SparseBooleanArray mLockScreenShowNotifications; field in PreferencesHelper
2814 if (mLockScreenShowNotifications == null) { in updateLockScreenShowNotifications()
2815 mLockScreenShowNotifications = new SparseBooleanArray(); in updateLockScreenShowNotifications()
2819 for (int index = 0; index < mLockScreenShowNotifications.size(); index++) { in updateLockScreenShowNotifications()
2820 int userId = mLockScreenShowNotifications.keyAt(index); in updateLockScreenShowNotifications()
2821 final boolean oldValue = mLockScreenShowNotifications.get(userId); in updateLockScreenShowNotifications()
2824 mLockScreenShowNotifications.put(userId, newValue); in updateLockScreenShowNotifications()
2834 if (mLockScreenShowNotifications == null) { in canShowNotificationsOnLockscreen()
2835 mLockScreenShowNotifications = new SparseBooleanArray(); in canShowNotificationsOnLockscreen()
2837 return mLockScreenShowNotifications.get(userId, true); in canShowNotificationsOnLockscreen()