Searched refs:mLockScreenPrivateNotifications (Results 1 – 1 of 1) sorted by relevance
213 private SparseBooleanArray mLockScreenPrivateNotifications; field in PreferencesHelper2845 if (mLockScreenPrivateNotifications == null) { in updateLockScreenPrivateNotifications()2846 mLockScreenPrivateNotifications = new SparseBooleanArray(); in updateLockScreenPrivateNotifications()2850 for (int index = 0; index < mLockScreenPrivateNotifications.size(); index++) { in updateLockScreenPrivateNotifications()2851 int userId = mLockScreenPrivateNotifications.keyAt(index); in updateLockScreenPrivateNotifications()2852 final boolean oldValue = mLockScreenPrivateNotifications.get(userId); in updateLockScreenPrivateNotifications()2855 mLockScreenPrivateNotifications.put(userId, newValue); in updateLockScreenPrivateNotifications()2892 if (mLockScreenPrivateNotifications == null) { in canShowPrivateNotificationsOnLockScreen()2893 mLockScreenPrivateNotifications = new SparseBooleanArray(); in canShowPrivateNotificationsOnLockScreen()2895 return mLockScreenPrivateNotifications.get(userId, true); in canShowPrivateNotificationsOnLockScreen()