Home
last modified time | relevance | path

Searched refs:userLocked (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DPulseExpansionHandler.kt310 private fun setUserLocked(child: ExpandableView, userLocked: Boolean) {
312 child.isUserLocked = userLocked
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DNotificationEntry.java700 public void setUserLocked(boolean userLocked) { in setUserLocked() argument
701 if (row != null) row.setUserLocked(userLocked); in setUserLocked()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationChildrenContainer.java1337 public void setUserLocked(boolean userLocked) {
1338 mUserLocked = userLocked;
1345 child.setUserLocked(userLocked && !showingAsLowPriority());
H A DNotificationStackScrollLayout.java6345 public void setUserLockedChild(View v, boolean userLocked) {
6347 ((ExpandableNotificationRow) v).setUserLocked(userLocked);
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRow.java2510 public void setUserLocked(boolean userLocked) {
2511 mUserLocked = userLocked;
2512 mPrivateLayout.setUserExpanding(userLocked);
2516 mChildrenContainer.setUserLocked(userLocked);
2517 if (mIsSummaryWithChildren && (userLocked || !isGroupExpanded())) {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java52 void setUserLockedChild(View v, boolean userLocked); in setUserLockedChild() argument