Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/notification/
H A DPreferencesHelper.java178 private SparseBooleanArray mLockScreenPrivateNotifications; field in PreferencesHelper
2467 if (mLockScreenPrivateNotifications == null) { in updateLockScreenPrivateNotifications()
2468 mLockScreenPrivateNotifications = new SparseBooleanArray(); in updateLockScreenPrivateNotifications()
2472 for (int index = 0; index < mLockScreenPrivateNotifications.size(); index++) { in updateLockScreenPrivateNotifications()
2473 int userId = mLockScreenPrivateNotifications.keyAt(index); in updateLockScreenPrivateNotifications()
2474 final boolean oldValue = mLockScreenPrivateNotifications.get(userId); in updateLockScreenPrivateNotifications()
2477 mLockScreenPrivateNotifications.put(userId, newValue); in updateLockScreenPrivateNotifications()
2514 if (mLockScreenPrivateNotifications == null) { in canShowPrivateNotificationsOnLockScreen()
2515 mLockScreenPrivateNotifications = new SparseBooleanArray(); in canShowPrivateNotificationsOnLockScreen()
2517 return mLockScreenPrivateNotifications.get(userId, true); in canShowPrivateNotificationsOnLockScreen()