Home
last modified time | relevance | path

Searched refs:eventLog (Results 1 – 12 of 12) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DActiveGestureLog.java115 EventLog eventLog = new EventLog(mCurrentLogId, mIsFullyGesturalNavMode); in addLog() local
119 eventLog.eventEntries.add(eventEntry); in addLog()
120 logs[nextIndex] = eventLog; in addLog()
144 EventLog eventLog = logs[(nextIndex + i) % logs.length]; in dump() local
145 if (eventLog == null) { in dump()
148 ActiveGestureErrorDetector.analyseAndDump(prefix + '\t', writer, eventLog); in dump()
155 EventLog eventLog = logs[(nextIndex + i) % logs.length]; in dump() local
156 if (eventLog == null) { in dump()
160 writer.println(prefix + "\tLogs for logId: " + eventLog.logId); in dump()
161 for (EventEntry eventEntry : eventLog.eventEntries) { in dump()
DActiveGestureErrorDetector.java75 @NonNull ActiveGestureLog.EventLog eventLog) { in analyseAndDump() argument
76 writer.println(prefix + "Error messages for gesture ID: " + eventLog.logId); in analyseAndDump()
77 if (!eventLog.mIsFullyGesturalNavMode) { in analyseAndDump()
88 for (ActiveGestureLog.EventEntry eventEntry : eventLog.eventEntries) { in analyseAndDump()
/packages/modules/IntentResolver/tests/shared/src/com/android/intentresolver/contentpreview/payloadtoggle/domain/interactor/
DPayloadToggleInteractorKosmos.kt35 import com.android.intentresolver.logging.eventLog
64 eventLog = eventLog,
/packages/modules/IntentResolver/java/src/com/android/intentresolver/contentpreview/payloadtoggle/domain/interactor/
DCustomActionsInteractor.kt41 private val eventLog: EventLog, in <lambda>() constant in com.android.intentresolver.contentpreview.payloadtoggle.domain.interactor.CustomActionsInteractor
63 eventLog.logCustomActionSelected(index) in <lambda>()
/packages/modules/IntentResolver/tests/activity/src/com/android/intentresolver/
DChooserActivityTest.java956 FakeEventLog eventLog = getEventLog(activity); in copyTextToClipboardLogging() local
957 assertThat(eventLog.getActionSelected()) in copyTextToClipboardLogging()
1301 FakeEventLog eventLog = getEventLog(activity); in testOnCreateLogging() local
1302 FakeEventLog.ChooserActivityShown event = eventLog.getChooserActivityShown(); in testOnCreateLogging()
1321 FakeEventLog eventLog = getEventLog(activity); in testOnCreateLoggingFromWorkProfile() local
1322 FakeEventLog.ChooserActivityShown event = eventLog.getChooserActivityShown(); in testOnCreateLoggingFromWorkProfile()
1337 FakeEventLog eventLog = getEventLog(activity); in testEmptyPreviewLogging() local
1338 FakeEventLog.ChooserActivityShown event = eventLog.getChooserActivityShown(); in testEmptyPreviewLogging()
1356 FakeEventLog eventLog = getEventLog(activity); in testTitlePreviewLogging() local
1357 assertThat(eventLog.getActionShareWithPreview()) in testTitlePreviewLogging()
[all …]
/packages/modules/IntentResolver/tests/shared/src/com/android/intentresolver/logging/
DEventLogKosmos.kt22 var Kosmos.eventLog by Kosmos.Fixture { fakeEventLog } in <lambda>() variable
/packages/modules/IntentResolver/java/src/com/android/intentresolver/model/
DAbstractResolverComparator.java167 void setEventLog(EventLog eventLog) { in setEventLog() argument
168 mEventLog = eventLog; in setEventLog()
DResolverRankerServiceResolverComparator.java108 EventLog eventLog, UserHandle targetUserSpace, in ResolverRankerServiceResolverComparator() argument
110 this(launchedFromContext, intent, referrerPackage, afterCompute, eventLog, in ResolverRankerServiceResolverComparator()
123 String referrerPackage, Runnable afterCompute, EventLog eventLog, in ResolverRankerServiceResolverComparator() argument
144 setEventLog(eventLog); in ResolverRankerServiceResolverComparator()
DAppPredictionServiceResolverComparator.java77 EventLog eventLog, in AppPredictionServiceResolverComparator() argument
85 setEventLog(eventLog); in AppPredictionServiceResolverComparator()
/packages/modules/IntentResolver/java/src/com/android/intentresolver/logging/
DEventLogModule.kt34 @Binds @ActivityRetainedScoped fun eventLog(value: EventLogImpl): EventLog in eventLog() method
/packages/modules/IntentResolver/java/src/com/android/intentresolver/
DChooserListAdapter.java170 EventLog eventLog, in ChooserListAdapter() argument
188 eventLog, in ChooserListAdapter()
211 EventLog eventLog, in ChooserListAdapter() argument
244 mEventLog = eventLog; in ChooserListAdapter()
/packages/modules/IntentResolver/tests/unit/src/com/android/intentresolver/contentpreview/payloadtoggle/ui/viewmodel/
DShareouselViewModelTest.kt51 import com.android.intentresolver.logging.eventLog in <lambda>()
293 assertThat(eventLog.customActionSelected) in <lambda>()