Home
last modified time | relevance | path

Searched refs:decision (Results 1 – 22 of 22) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
DVisualInterruptionDecisionLogger.kt48 decision: VisualInterruptionDecisionProvider.Decision in logDecision()
55 bool1 = decision.shouldInterrupt in logDecision()
56 str2 = decision.logReason in logDecision()
68 decision: FullScreenIntentDecision, in logFullScreenIntentDecision()
75 bool1 = decision.shouldInterrupt in logFullScreenIntentDecision()
76 bool2 = decision.wouldInterruptWithoutDnd in logFullScreenIntentDecision()
77 str1 = decision.logReason in logFullScreenIntentDecision()
DVisualInterruptionDecisionProviderImpl.kt90 val decision: DecisionImpl, constant in LoggableDecision
226 .decision in makeUnloggedHeadsUpDecision()
238 .decision in makeAndLogHeadsUpDecision()
261 .decision in makeLoggablePeekDecision()
276 logger.logDecision(type.name, entry, loggableDecision.decision) in makeLoggableBubbleDecision()
294 override fun logFullScreenIntentDecision(decision: FullScreenIntentDecision) = in logFullScreenIntentDecision()
298 if (decision !is FullScreenIntentDecisionImpl) { in logFullScreenIntentDecision()
299 Log.wtf(TAG, "FSI decision $decision was not created by this class") in logFullScreenIntentDecision()
303 if (decision.hasBeenLogged) { in logFullScreenIntentDecision()
304 Log.wtf(TAG, "FSI decision $decision has already been logged") in logFullScreenIntentDecision()
[all …]
DNotificationInterruptStateProviderImpl.java243 FullScreenIntentDecision decision = getFullScreenIntentDecision(entry); in shouldLaunchFullScreenIntentWhenAdded() local
244 logFullScreenIntentDecision(entry, decision); in shouldLaunchFullScreenIntentWhenAdded()
245 return decision.shouldLaunch; in shouldLaunchFullScreenIntentWhenAdded()
257 private FullScreenIntentDecision getDecisionGivenSuppression(FullScreenIntentDecision decision, in getDecisionGivenSuppression() argument
260 return decision.shouldLaunch in getDecisionGivenSuppression()
264 return decision; in getDecisionGivenSuppression()
379 FullScreenIntentDecision decision) { in logFullScreenIntentDecision() argument
382 switch (decision) { in logFullScreenIntentDecision()
392 decision + ": GroupAlertBehavior will prevent HUN"); in logFullScreenIntentDecision()
400 decision + ": BubbleMetadata may prevent HUN"); in logFullScreenIntentDecision()
[all …]
DNotificationInterruptStateProviderWrapper.kt104 override fun logFullScreenIntentDecision(decision: FullScreenIntentDecision) = in logFullScreenIntentDecision()
106 (decision as FullScreenIntentDecisionImpl).let { in logFullScreenIntentDecision()
DNotificationInterruptStateProvider.java181 void logFullScreenIntentDecision(NotificationEntry entry, FullScreenIntentDecision decision); in logFullScreenIntentDecision() argument
DVisualInterruptionDecisionProvider.kt173 fun logFullScreenIntentDecision(decision: FullScreenIntentDecision)
/frameworks/opt/car/services/updatableServices/src/com/android/server/wm/
DCarLaunchParamsModifierUpdatableImpl.java296 decision: in calculate()
323 break decision; in calculate() local
330 break decision; in calculate() local
336 break decision; in calculate() local
350 break decision; in calculate() local
356 break decision; in calculate() local
361 break decision; in calculate() local
/frameworks/proto_logging/stats/enums/telephony/satellite/
Denums.proto127 // Network country code is used for satellite access decision
129 // Device's current location is used for satellite access decision
131 // Device's last known location is used for satellite access decision
133 // Cached country codes are used for satellite access decision
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DHeadsUpCoordinator.kt521 val decision = in <lambda>() constant
525 if (decision.shouldInterrupt) { in <lambda>()
528 mLogger.logEntryUpdatedToFullScreen(entry.key, decision.logReason) in <lambda>()
529 mVisualInterruptionDecisionProvider.logFullScreenIntentDecision(decision) in <lambda>()
535 } else if (decision.wouldInterruptWithoutDnd) { in <lambda>()
540 mLogger.logEntryDisqualifiedFromFullScreen(entry.key, decision.logReason) in <lambda>()
541 mVisualInterruptionDecisionProvider.logFullScreenIntentDecision(decision) in <lambda>()
551 val decision = in <lambda>() constant
553 val shouldHeadsUpEver = decision.shouldInterrupt in <lambda>()
561 decision.logReason in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptStateProviderImplTest.java907 for (FullScreenIntentDecision decision : FullScreenIntentDecision.values()) { in logFullScreenIntentDecision_shouldAlmostAlwaysLogOneTime()
909 boolean expectedToLog = decision != FullScreenIntentDecision.NO_FULL_SCREEN_INTENT; in logFullScreenIntentDecision_shouldAlmostAlwaysLogOneTime()
910 boolean isWarning = warnings.contains(decision); in logFullScreenIntentDecision_shouldAlmostAlwaysLogOneTime()
911 mNotifInterruptionStateProvider.logFullScreenIntentDecision(entry, decision); in logFullScreenIntentDecision_shouldAlmostAlwaysLogOneTime()
912 if (decision.shouldLaunch) { in logFullScreenIntentDecision_shouldAlmostAlwaysLogOneTime()
913 verify(mLogger).logFullscreen(eq(entry), contains(decision.name())); in logFullScreenIntentDecision_shouldAlmostAlwaysLogOneTime()
916 verify(mLogger).logNoFullscreenWarning(eq(entry), contains(decision.name())); in logFullScreenIntentDecision_shouldAlmostAlwaysLogOneTime()
918 verify(mLogger).logNoFullscreen(eq(entry), contains(decision.name())); in logFullScreenIntentDecision_shouldAlmostAlwaysLogOneTime()
DVisualInterruptionDecisionProviderTestBase.kt718 val decision = provider.makeUnloggedFullScreenIntentDecision(entry) in <lambda>() constant
721 provider.logFullScreenIntentDecision(decision) in <lambda>()
777 val decision = provider.makeUnloggedFullScreenIntentDecision(entry) in <lambda>() constant
780 provider.logFullScreenIntentDecision(decision) in <lambda>()
875 val decision = provider.makeUnloggedFullScreenIntentDecision(entry) in <lambda>() constant
878 provider.logFullScreenIntentDecision(decision) in <lambda>()
/frameworks/base/core/java/android/view/flags/
Drefresh_rate_flags.aconfig55 description: "Feature flag for toolkit metrics collecting for frame rate decision"
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DHeadsUpCoordinatorTest.kt1073 val decision = withArgCaptor { in <lambda>() constant
1076 check(decision is FullScreenIntentDecisionImpl) in <lambda>()
1077 assertEquals(entry, decision.originalEntry) in <lambda>()
1078 assertEquals(originalDecision, decision.originalDecision) in <lambda>()
/frameworks/base/services/permission/java/com/android/server/permission/access/immutable/
DImmutable.md178 middle of a mutation operation and make a wrong decision. As a result, we will still need locking
206 mostly happen upon first boot, or when user changes their permission decision which is rare in terms
/frameworks/hardware/interfaces/cameraservice/device/2.0/
DICameraDeviceUser.hal48 * service's decision to use / not use FMQ to pass result metadata to the
/frameworks/base/core/proto/android/providers/settings/
Dsystem.proto25 // Note: it's a conscious decision to add each setting as a separate field. This
Dsecure.proto25 // Note: it's a conscious decision to add each setting as a separate field. This
Dglobal.proto25 // Note: it's a conscious decision to add each setting as a separate field. This
/frameworks/proto_logging/stats/atoms/framework/
Dframework_extension_atoms.proto603 // The threshold that was applied to make the decision
/frameworks/native/opengl/tests/angeles/
Dlicense-LGPL.txt431 decision will be guided by the two goals of preserving the free status
/frameworks/proto_logging/stats/atoms/adservices/
Dadservices_extension_atoms.proto1512 /* Logs for the getting buyer's decision logic script process. */
/frameworks/proto_logging/stats/
Datoms.proto22069 * Log that the user has interacted with the permission decision screen.
22086 // Uid of the package for the permission decision being reviewed
22089 // Name of the permission for the permission decision being reviewed.