Searched refs:mLockScreenShowNotifications (Results 1 – 1 of 1) sorted by relevance
177 private SparseBooleanArray mLockScreenShowNotifications; field in PreferencesHelper2486 if (mLockScreenShowNotifications == null) { in updateLockScreenShowNotifications()2487 mLockScreenShowNotifications = new SparseBooleanArray(); in updateLockScreenShowNotifications()2491 for (int index = 0; index < mLockScreenShowNotifications.size(); index++) { in updateLockScreenShowNotifications()2492 int userId = mLockScreenShowNotifications.keyAt(index); in updateLockScreenShowNotifications()2493 final boolean oldValue = mLockScreenShowNotifications.get(userId); in updateLockScreenShowNotifications()2496 mLockScreenShowNotifications.put(userId, newValue); in updateLockScreenShowNotifications()2506 if (mLockScreenShowNotifications == null) { in canShowNotificationsOnLockscreen()2507 mLockScreenShowNotifications = new SparseBooleanArray(); in canShowNotificationsOnLockscreen()2509 return mLockScreenShowNotifications.get(userId, true); in canShowNotificationsOnLockscreen()