Searched refs:mLockScreenShowNotifications (Results 1 – 1 of 1) sorted by relevance
202 private SparseBooleanArray mLockScreenShowNotifications; field in PreferencesHelper2814 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()