Searched refs:mLockScreenPrivateNotifications (Results 1 – 1 of 1) sorted by relevance
178 private SparseBooleanArray mLockScreenPrivateNotifications; field in PreferencesHelper2465 if (mLockScreenPrivateNotifications == null) { in updateLockScreenPrivateNotifications()2466 mLockScreenPrivateNotifications = new SparseBooleanArray(); in updateLockScreenPrivateNotifications()2470 for (int index = 0; index < mLockScreenPrivateNotifications.size(); index++) { in updateLockScreenPrivateNotifications()2471 int userId = mLockScreenPrivateNotifications.keyAt(index); in updateLockScreenPrivateNotifications()2472 final boolean oldValue = mLockScreenPrivateNotifications.get(userId); in updateLockScreenPrivateNotifications()2475 mLockScreenPrivateNotifications.put(userId, newValue); in updateLockScreenPrivateNotifications()2512 if (mLockScreenPrivateNotifications == null) { in canShowPrivateNotificationsOnLockScreen()2513 mLockScreenPrivateNotifications = new SparseBooleanArray(); in canShowPrivateNotificationsOnLockScreen()2515 return mLockScreenPrivateNotifications.get(userId, true); in canShowPrivateNotificationsOnLockScreen()