Home
last modified time | relevance | path

Searched refs:addLog (Results 1 – 19 of 19) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DActiveGestureLog.java64 addLog(CompoundString.NO_OP, gestureEvent); in trackEvent()
70 public void addLog(@NonNull String event) { in addLog() method in ActiveGestureLog
71 addLog(event, null); in addLog()
74 public void addLog(@NonNull String event, int extras) { in addLog() method in ActiveGestureLog
75 addLog(event, extras, null); in addLog()
78 public void addLog(@NonNull String event, boolean extras) { in addLog() method in ActiveGestureLog
79 addLog(event, extras, null); in addLog()
87 public void addLog( in addLog() method in ActiveGestureLog
89 addLog(new CompoundString(event), gestureEvent); in addLog()
92 public void addLog( in addLog() method in ActiveGestureLog
[all …]
DTaskRemovedDuringLaunchListener.java101 ActiveGestureLog.INSTANCE.addLog( in checkTaskLaunchFailed()
DMotionPauseDetector.java249 ActiveGestureLog.INSTANCE.addLog(logString);
/packages/apps/Launcher3/src/com/android/launcher3/util/
DEventLogArray.kt48 fun addLog(event: String) { in addLog() method
49 addLog(TYPE_ONE_OFF, event, 0f) in addLog()
52 fun addLog(event: String, extras: Int) { in addLog() method
53 addLog(TYPE_INTEGER, event, extras.toFloat()) in addLog()
56 fun addLog(event: String, extras: Float) { in addLog() method
57 addLog(TYPE_FLOAT, event, extras) in addLog()
60 fun addLog(event: String, extras: Boolean) { in addLog() method
61 addLog(if (extras) TYPE_BOOL_TRUE else TYPE_BOOL_FALSE, event, 0f) in addLog()
64 private fun addLog(type: Int, event: String, extras: Float) { in addLog() method
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DTaskAnimationManager.java135 ActiveGestureLog.INSTANCE.addLog( in startRecentsAnimation()
168 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in startRecentsAnimation()
214 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in startRecentsAnimation()
226 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in startRecentsAnimation()
280 ActiveGestureLog.INSTANCE.addLog( in startRecentsAnimation()
289 ActiveGestureLog.INSTANCE.addLog("Unable to launch side task (no recents)"); in startRecentsAnimation()
344 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in startRecentsAnimation()
357 ActiveGestureLog.INSTANCE.addLog( in startRecentsAnimation()
376 ActiveGestureLog.INSTANCE.addLog(/* event= */ "continueRecentsAnimation"); in continueRecentsAnimation()
458 ActiveGestureLog.INSTANCE.addLog( in finishRunningRecentsAnimation()
[all …]
DRecentsAnimationCallbacks.java114 ActiveGestureLog.INSTANCE.addLog( in onAnimationStart()
148 ActiveGestureLog.INSTANCE.addLog( in onAnimationStart()
163 ActiveGestureLog.INSTANCE.addLog( in onAnimationCanceled()
176 ActiveGestureLog.INSTANCE.addLog("RecentsAnimationCallbacks.onTasksAppeared", in onTasksAppeared()
198 ActiveGestureLog.INSTANCE.addLog( in onAnimationFinished()
DRecentsAnimationController.java168 ActiveGestureLog.INSTANCE.addLog( in finishController()
180 ActiveGestureLog.INSTANCE.addLog("finishRecentsAnimation-callback"); in finishController()
203 ActiveGestureLog.INSTANCE.addLog( in cleanupScreenshot()
DTouchInteractionService.java778 ActiveGestureLog.INSTANCE.addLog(new CompoundString("TIS.onInputEvent: ")
791 ActiveGestureLog.INSTANCE.addLog(new CompoundString("TIS.onInputEvent: ")
811 ActiveGestureLog.INSTANCE.addLog(
883 ActiveGestureLog.INSTANCE.addLog(reasonString);
886 ActiveGestureLog.INSTANCE.addLog(
901 ActiveGestureLog.INSTANCE.addLog(
912 ActiveGestureLog.INSTANCE.addLog(
1007 ActiveGestureLog.INSTANCE.addLog(new CompoundString("Current running task package name=")
1009 ActiveGestureLog.INSTANCE.addLog(new CompoundString("Current SystemUi state flags=")
1209 ActiveGestureLog.INSTANCE.addLog(new CompoundString("setInputConsumer: ")
[all …]
DMultiStateCallback.java118 ActiveGestureLog.INSTANCE.addLog(gestureEvent.name(), gestureEvent); in trackGestureEvents()
120 ActiveGestureLog.INSTANCE.addLog(gestureEvent.name()); in trackGestureEvents()
DAbsSwipeUpHandler.java199 ActiveGestureLog.INSTANCE.addLog("Launcher destroyed", LAUNCHER_DESTROYED);
1007 ActiveGestureLog.INSTANCE.addLog(
1201 ActiveGestureLog.INSTANCE.addLog(
1232 ActiveGestureLog.INSTANCE.addLog(
1998 ActiveGestureLog.INSTANCE.addLog(
2336 ActiveGestureLog.INSTANCE.addLog(nextTaskLog);
2415 ActiveGestureLog.INSTANCE.addLog(
2432 ActiveGestureLog.INSTANCE.addLog("No appeared task matching started task id");
2441 ActiveGestureLog.INSTANCE.addLog("Invalid task view splash state");
2446 ActiveGestureLog.INSTANCE.addLog("Activity destroyed");
[all …]
DOverviewComponentObserver.java298 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in startHomeIntentSafely()
DGestureState.java414 ActiveGestureLog.INSTANCE.addLog( in setEndTarget()
DOverviewCommandHelper.java266 ActiveGestureLog.INSTANCE.addLog( in executeCommand()
DSystemUiProxy.java1541 ActiveGestureLog.INSTANCE.addLog("Null mRecentTasks", RECENT_TASKS_MISSING); in startRecentsActivity()
/packages/services/Car/tests/usb/AoapHostApp/src/com/google/android/car/usb/aoap/host/
DUsbAoapHostActivity.java110 private void addLog(String message) { in addLog() method in UsbAoapHostActivity
124 addLog("Starting " + getTestModeString(mode) + " mode test with buffer size " + bufferSize in testStarted()
130 addLog("Completed " + getTestModeString(mode) + " mode test with buffer size " + bufferSize in testFinished()
137 addLog("Test result for " + getTestModeString(mode) + " mode: " + update); in testResult()
143 addLog("All tests are completed"); in testSuiteFinished()
/packages/apps/Launcher3/src/com/android/launcher3/model/
DLoaderMemoryLogger.java36 protected void addLog(int logLevel, String tag, String log) { in addLog() method in LoaderMemoryLogger
37 addLog(logLevel, tag, log, null); in addLog()
40 protected void addLog( in addLog() method in LoaderMemoryLogger
DBgDataModel.java254 logger.addLog( in addItem()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/
DDelegateInputConsumer.java60 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString(getDelegatorName()) in setActive()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DRecentsView.java1523 ActiveGestureLog.INSTANCE.addLog( in onPageEndTransition()
1727 ActiveGestureLog.INSTANCE.addLog("scroller animation aborted", in onScrollerAnimationAborted()