Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptStateProviderImplTest.java577 verify(mLogger, never()).logNoFullscreen(any(), any()); in testShouldNotFullScreen_notPendingIntent()
598 verify(mLogger).logNoFullscreen(entry, "NO_FSI_SUPPRESSED_ONLY_BY_DND"); in testShouldNotFullScreen_suppressedOnlyByDND()
617 verify(mLogger).logNoFullscreen(entry, "NO_FSI_SUPPRESSED_BY_DND"); in testShouldNotFullScreen_suppressedByDNDAndOther()
631 verify(mLogger).logNoFullscreen(entry, "NO_FSI_NOT_IMPORTANT_ENOUGH"); in testShouldNotFullScreen_notHighImportance()
647 verify(mLogger, never()).logNoFullscreen(any(), any()); in testShouldNotFullScreen_isGroupAlertSilenced()
674 verify(mLogger, never()).logNoFullscreen(any(), any()); in testShouldNotFullScreen_isSuppressedByBubbleMetadata()
701 verify(mLogger, never()).logNoFullscreen(any(), any()); in testShouldFullScreen_notInteractive()
717 verify(mLogger, never()).logNoFullscreen(any(), any()); in testShouldFullScreen_isDreaming()
733 verify(mLogger, never()).logNoFullscreen(any(), any()); in testShouldFullScreen_onKeyguard()
752 verify(mLogger, never()).logNoFullscreen(any(), any()); in testShouldFullscreen_suppressedInterruptionsWhenNotProvisioned()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptLogger.kt274 fun logNoFullscreen(entry: NotificationEntry, reason: String) { in logNoFullscreen() method in com.android.systemui.statusbar.notification.interruption.NotificationInterruptLogger
DNotificationInterruptStateProviderImpl.java413 mLogger.logNoFullscreen(entry, decision.name()); in logFullScreenIntentDecision()