Searched refs:mLockScreenPrivateNotifications (Results 1 – 1 of 1) sorted by relevance
203 private SparseBooleanArray mLockScreenPrivateNotifications; field in PreferencesHelper2795 if (mLockScreenPrivateNotifications == null) { in updateLockScreenPrivateNotifications()2796 mLockScreenPrivateNotifications = new SparseBooleanArray(); in updateLockScreenPrivateNotifications()2800 for (int index = 0; index < mLockScreenPrivateNotifications.size(); index++) { in updateLockScreenPrivateNotifications()2801 int userId = mLockScreenPrivateNotifications.keyAt(index); in updateLockScreenPrivateNotifications()2802 final boolean oldValue = mLockScreenPrivateNotifications.get(userId); in updateLockScreenPrivateNotifications()2805 mLockScreenPrivateNotifications.put(userId, newValue); in updateLockScreenPrivateNotifications()2842 if (mLockScreenPrivateNotifications == null) { in canShowPrivateNotificationsOnLockScreen()2843 mLockScreenPrivateNotifications = new SparseBooleanArray(); in canShowPrivateNotificationsOnLockScreen()2845 return mLockScreenPrivateNotifications.get(userId, true); in canShowPrivateNotificationsOnLockScreen()