Home
last modified time | relevance | path

Searched refs:notificationKey (Results 1 – 21 of 21) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DNotificationLaunchAnimatorControllerTest.kt51 private val notificationKey: String
73 `when`(headsUpManager.isAlerting(notificationKey)).thenReturn(true)
89 notificationKey, true /* releaseImmediately */, true /* animate */)
106 notificationKey, true /* releaseImmediately */, true /* animate */)
123 notificationKey, true /* releaseImmediately */, false /* animate */)
142 `when`(headsUpManager.isAlerting(notificationKey)).thenReturn(false)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarNotificationActivityStarter.java303 String notificationKey = entry.getKey(); in handleNotificationClickAfterPanelCollapsed() local
325 intent.getIntentSender(), notificationKey)) { in handleNotificationClickAfterPanelCollapsed()
340 && !mRemoteInputManager.isSpinning(notificationKey)) { in handleNotificationClickAfterPanelCollapsed()
359 || mRemoteInputManager.isNotificationKeptForRemoteInputHistory(notificationKey))) { in handleNotificationClickAfterPanelCollapsed()
375 mClickNotifier.onNotificationClick(notificationKey, nv); in handleNotificationClickAfterPanelCollapsed()
393 String notificationKey = entry.getKey(); in onDragSuccess() local
395 || mRemoteInputManager.isNotificationKeptForRemoteInputHistory(notificationKey)) { in onDragSuccess()
412 mClickNotifier.onNotificationClick(notificationKey, nv); in onDragSuccess()
H A DStatusBarRemoteInputCallback.java216 String notificationKey) { in startWorkChallengeIfNecessary() argument
228 callBackIntent.putExtra(Intent.EXTRA_INDEX, notificationKey); in startWorkChallengeIfNecessary()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
H A DNotificationMemoryDumper.kt45 .sortedWith(compareBy({ it.packageName }, { it.notificationKey }))
79 it.notificationKey.replace('|', '│')
163 use.notificationKey.replace('|', '│')
H A DNotificationMemory.kt26 val notificationKey: String,
H A DNotificationMemoryLogger.kt97 { it.notificationKey }
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
H A DLaunchConversationActivity.java114 String notificationKey = in onCreate() local
144 NotificationEntry entry = mCommonNotifCollection.getEntry(notificationKey); in onCreate()
161 clearNotificationIfPresent(notificationKey, packageName, userHandle); in onCreate()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationLaunchAnimatorController.kt79 private val notificationKey = notificationEntry.sbn.key regex
162 headsUpManager.isAlerting(notificationKey) -> notification
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/ui/
H A DMediaCarouselControllerTest.kt341 it.second.copy(notificationKey = it.first),
349 assertEquals(expected.get(index).first, key.data.notificationKey)
353 assertEquals(expected.get(index).first, key.data.notificationKey)
643 player1.second.copy(notificationKey = player1.first),
656 player2.second.copy(notificationKey = player2.first),
671 player3.second.copy(notificationKey = player3.first),
H A DMediaPlayerDataTest.kt259 notificationKey = "key: $app",
H A DMediaControlPanelTest.kt1335 val state = mediaData.copy(notificationKey = KEY)
1348 val state = mediaData.copy(isClearable = false, notificationKey = KEY)
1360 val state = mediaData.copy(notificationKey = KEY)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationLockscreenUserManagerImpl.java159 final String notificationKey = intent.getStringExtra(Intent.EXTRA_INDEX);
171 if (notificationKey != null) {
173 .obtain(notificationKey, true);
174 mClickNotifier.onNotificationClick(notificationKey, nv);
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/models/player/
H A DMediaData.kt75 val notificationKey: String? = null,
/aosp14/frameworks/base/core/java/android/app/people/
H A DPeopleSpaceTile.java382 public Builder setNotificationKey(String notificationKey) { in setNotificationKey() argument
383 mNotificationKey = notificationKey; in setNotificationKey()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRowController.java212 @NotificationKey String notificationKey, in ExpandableNotificationRowController() argument
240 mNotificationKey = notificationKey; in ExpandableNotificationRowController()
H A DExpandableNotificationRow.java1704 String notificationKey,
1736 mLoggingKey = notificationKey;
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/
H A DNotificationMemoryMeterTest.kt301 assertThat(memoryUse.notificationKey)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/pipeline/
H A DMediaSessionBasedFilterTest.kt53 MediaTestUtils.emptyMediaData.copy(packageName = PACKAGE, notificationKey = NOTIF_KEY)
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/
H A DDataManagerTest.java503 String notificationKey = ""; in testUncacheShortcutsWhenNotificationsDismissed() local
511 notificationKey = String.format("notification-key-%d", i); in testUncacheShortcutsWhenNotificationsDismissed()
512 sendGenericNotificationWithKey(notificationKey); in testUncacheShortcutsWhenNotificationsDismissed()
526 when(mGenericSbn.getKey()).thenReturn(notificationKey); in testUncacheShortcutsWhenNotificationsDismissed()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/pipeline/
H A DMediaDataManager.kt754 notificationKey = packageName,
932 notificationKey = key,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/
H A DMediaCarouselController.kt1290 .thenByDescending { it.data.notificationKey }