Searched refs:mLockScreenShowNotifications (Results 1 – 1 of 1) sorted by relevance
212 private SparseBooleanArray mLockScreenShowNotifications; field in PreferencesHelper2864 if (mLockScreenShowNotifications == null) { in updateLockScreenShowNotifications()2865 mLockScreenShowNotifications = new SparseBooleanArray(); in updateLockScreenShowNotifications()2869 for (int index = 0; index < mLockScreenShowNotifications.size(); index++) { in updateLockScreenShowNotifications()2870 int userId = mLockScreenShowNotifications.keyAt(index); in updateLockScreenShowNotifications()2871 final boolean oldValue = mLockScreenShowNotifications.get(userId); in updateLockScreenShowNotifications()2874 mLockScreenShowNotifications.put(userId, newValue); in updateLockScreenShowNotifications()2884 if (mLockScreenShowNotifications == null) { in canShowNotificationsOnLockscreen()2885 mLockScreenShowNotifications = new SparseBooleanArray(); in canShowNotificationsOnLockscreen()2887 return mLockScreenShowNotifications.get(userId, true); in canShowNotificationsOnLockscreen()