Home
last modified time | relevance | path

Searched refs:logFullscreen (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptStateProviderImplTest.java579 verify(mLogger, never()).logFullscreen(any(), any()); in testShouldNotFullScreen_notPendingIntent()
596 verify(mLogger, never()).logFullscreen(any(), any()); in testShouldNotFullScreen_suppressedOnlyByDND()
615 verify(mLogger, never()).logFullscreen(any(), any()); in testShouldNotFullScreen_suppressedByDNDAndOther()
633 verify(mLogger, never()).logFullscreen(any(), any()); in testShouldNotFullScreen_notHighImportance()
650 verify(mLogger, never()).logFullscreen(any(), any()); in testShouldNotFullScreen_isGroupAlertSilenced()
677 verify(mLogger, never()).logFullscreen(any(), any()); in testShouldNotFullScreen_isSuppressedByBubbleMetadata()
703 verify(mLogger).logFullscreen(entry, "FSI_DEVICE_NOT_INTERACTIVE"); in testShouldFullScreen_notInteractive()
719 verify(mLogger).logFullscreen(entry, "FSI_DEVICE_IS_DREAMING"); in testShouldFullScreen_isDreaming()
735 verify(mLogger).logFullscreen(entry, "FSI_KEYGUARD_SHOWING"); in testShouldFullScreen_onKeyguard()
754 verify(mLogger).logFullscreen(entry, "FSI_NOT_PROVISIONED"); in testShouldFullscreen_suppressedInterruptionsWhenNotProvisioned()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptLogger.kt292 fun logFullscreen(entry: NotificationEntry, reason: String) { in logFullscreen() method
DNotificationInterruptStateProviderImpl.java411 mLogger.logFullscreen(entry, decision.name()); in logFullScreenIntentDecision()