Home
last modified time | relevance | path

Searched refs:logDebug (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
DFalsingCollectorNoOp.kt21 import com.android.systemui.classifier.FalsingCollectorImpl.logDebug
28 logDebug("NOOP: init") in init()
32 logDebug("NOOP: onSuccessfulUnlock") in onSuccessfulUnlock()
36 logDebug("NOOP: setShowingAod($showingAod)") in setShowingAod()
42 logDebug("NOOP: onScreenOnFromTouch") in shouldEnforceBouncer()
48 logDebug("NOOP: onScreenTurningOn") in isReportingEnabled()
52 logDebug("NOOP: onScreenOff") in onScreenOff()
56 logDebug("NOOP: onBouncerShown") in onBouncerShown()
60 logDebug("NOOP: onBouncerHidden") in onBouncerHidden()
64 logDebug("NOOP: onKeyEvent(${KeyEvent.actionToString(ev.action)}") in onKeyEvent()
[all …]
DFalsingCollectorImpl.java111 logDebug("StatusBarState=" + StatusBarState.toString(newState));
249 logDebug("REAL: onSuccessfulUnlock"); in onSuccessfulUnlock()
256 logDebug("REAL: setShowingAod(" + showingAod + ")"); in setShowingAod()
263 logDebug("REAL: onQsExpansionChanged(" + expanded + ")"); in onQsExpansionChanged()
272 logDebug("REAL: onShowingCommunalHubChanged(" + isShowing + ")"); in onShowingCommunalHubChanged()
284 logDebug("REAL: onScreenOnFromTouch"); in onScreenOnFromTouch()
295 logDebug("REAL: onScreenTurningOn"); in onScreenTurningOn()
302 logDebug("REAL: onScreenOff"); in onScreenOff()
309 logDebug("REAL: onBouncerShown"); in onBouncerShown()
315 logDebug("REAL: onBouncerHidden"); in onBouncerHidden()
[all …]
DDistanceClassifier.java127 logDebug("Only " + motionEvents.size() + " motion events recorded."); in calculateDistances()
190 logDebug("Is longSwipe? " + longSwipe); in isLongSwipe()
197 logDebug("Horizontal swipe distance: " + Math.abs(distanceVectors.mDx)); in getPassedDistanceThreshold()
198 logDebug("Threshold: " + mHorizontalSwipeThresholdPx); in getPassedDistanceThreshold()
203 logDebug("Vertical swipe distance: " + Math.abs(distanceVectors.mDy)); in getPassedDistanceThreshold()
204 logDebug("Threshold: " + mVerticalSwipeThresholdPx); in getPassedDistanceThreshold()
215 logDebug("Horizontal swipe and fling distance: " + distanceVectors.mDx + ", " in getPassedFlingThreshold()
217 logDebug("Threshold: " + mHorizontalFlingThresholdPx); in getPassedFlingThreshold()
221 logDebug("Vertical swipe and fling distance: " + distanceVectors.mDy + ", " in getPassedFlingThreshold()
223 logDebug("Threshold: " + mVerticalFlingThresholdPx); in getPassedFlingThreshold()
DBrightLineFalsingManager.java219 logDebug("Skipped falsing"); in isFalseTouch()
239 logDebug("False Gesture (type: " + interactionType + "): " + localResult[0]); in isFalseTouch()
267 logDebug("Skipped falsing"); in isFalseTap()
297 logDebug("False Single Tap: false (face detected)"); in isFalseTap()
303 logDebug("False Single Tap: false (double tapped)"); in isFalseTap()
309 logDebug("False Single Tap: true (bad history)"); in isFalseTap()
314 logDebug("False Single Tap: false (default)"); in isFalseTap()
319 logDebug("False Single Tap: " + singleTapResult.isFalse() + " (simple)"); in isFalseTap()
331 logDebug("Skipped falsing"); in isFalseLongTap()
361 logDebug("False Long Tap: false (face detected)"); in isFalseLongTap()
[all …]
DProximityClassifier.java89 logDebug("Gesture start time: " + mGestureStartTimeNs); in onTouchEvent()
97 logDebug("Gesture duration, Proximity duration: " + duration + ", " + mNearDurationNs); in onTouchEvent()
113 logDebug("Sensor is: " + covered + " at time " + timestampNs); in onProximityEvent()
155 logDebug("Updating duration: " + mNearDurationNs); in update()
159 logDebug("Set prevNearTimeNs: " + timeStampNs); in update()
DZigZagClassifier.java123 logDebug("Actual: (" + actualDx + "," + actualDy + ")"); in calculateFalsingResult()
167 logDebug("Straightness Deviance: (" + devianceX + "," + devianceY + ") vs " in calculateFalsingResult()
194 logDebug("Rotating to vertical by: " + angle); in rotateVertical()
201 logDebug("Rotating to horizontal by: " + angle); in rotateHorizontal()
223 logDebug( in rotateMotionEvents()
227 logDebug( in rotateMotionEvents()
DFalsingClassifier.java146 public static void logDebug(String msg) { in logDebug() method in FalsingClassifier
147 BrightLineFalsingManager.logDebug(msg); in logDebug()
DPointerCountClassifier.java54 logDebug("Pointers observed:" + mMaxPointerCount); in onTouchEvent()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleEducationController.kt44 logDebug("Show stack edu: never") in shouldShowStackEducation()
52 logDebug("Show stack edu: $shouldShow") in shouldShowStackEducation()
59 logDebug("Show manage edu: never") in shouldShowManageEducation()
67 logDebug("Show manage edu: $shouldShow") in shouldShowManageEducation()
71 private fun logDebug(message: String) { in logDebug() method in com.android.wm.shell.bubbles.BubbleEducationController
/frameworks/base/services/core/java/com/android/server/timedetector/
DGnssTimeUpdateService.java175 logDebug("Already listening for GNSS updates"); in startGnssListeningInternal()
193 logDebug("startGnssListeningLocked()"); in startGnssListeningLocked()
208 logDebug("handleLocationAvailable()"); in handleLocationAvailable()
215 logDebug(msg); in handleLocationAvailable()
219 logDebug("getGnssTimeMillis() returned null"); in handleLocationAvailable()
249 logDebug("handleAlarmFired()"); in handleAlarmFired()
261 logDebug("suggestGnssTime()"); in suggestGnssTime()
306 private void logDebug(String msg) { in logDebug() method in GnssTimeUpdateService
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/sensors/
DProximitySensorImpl.java111 logDebug("Secondary sensor event: " + event.getBelow() + ".");
201 logDebug("ProxListener registered multiple times: " + listener); in register()
274 logDebug("unregistering sensor listener"); in unregisterInternal()
316 logDebug("Primary sensor reported " + (event.getBelow() ? "near" : "far") in onPrimarySensorEvent()
326 logDebug("Primary sensor event: " + event.getBelow() + ". No secondary."); in onPrimarySensorEvent()
329 logDebug("Primary sensor event: " + event.getBelow() + ". Checking secondary."); in onPrimarySensorEvent()
361 void logDebug(String msg) { in logDebug() method in ProximitySensorImpl
DPostureDependentProximitySensor.java78 logDebug("No prox sensor when registering listener=" + listener); in register()
88 logDebug("Removing listener from mListenersRegisteredWhenProxUnavailable " in unregister()
107 logDebug("Register new proximity sensors newPosture=" in chooseSensors()
128 logDebug("Re-register listener " + listener); in chooseSensors()
DThresholdSensorImpl.java60 logDebug("Sensor value: " + event.values[0]);
161 logDebug("Registering sensor listener"); in registerInternal()
171 logDebug("Unregister sensor listener"); in unregisterInternal()
201 logDebug("Alerting below: " + belowThreshold); in onSensorEvent()
221 private void logDebug(String msg) { in logDebug() method in ThresholdSensorImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/notetask/quickaffordance/
DNoteTaskQuickAffordanceConfig.kt94 logDebug { "lockScreenState:isUserUnlocked=$isUserUnlocked" } in <lambda>()
95 logDebug { "lockScreenState:isStylusEverUsed=$isStylusEverUsed" } in <lambda>()
96 logDebug { "lockScreenState:isConfigSelected=$isConfigSelected" } in <lambda>()
97 logDebug { "lockScreenState:isDefaultNotesAppSet=$isDefaultNotesAppSet" } in <lambda>()
113 .onEach { state -> logDebug { "lockScreenState=$state" } } in <lambda>()
200 private inline fun Any.logDebug(message: () -> String) { in logDebug() method
/frameworks/base/services/core/java/com/android/server/location/gnss/
DNtpNetworkTimeHelper.java210 logDebug(debugMsg); in blockingGetNtpTimeAndInject()
230 logDebug(debugMsg); in maybeInjectCachedNtpTime()
241 logDebug(debugMsg); in maybeInjectCachedNtpTime()
255 private void logDebug(String debugMsg) { in logDebug() method in NtpNetworkTimeHelper
/frameworks/base/packages/SystemUI/tests/src/com/android/
DAAAPlusPlusVerifySysuiRequiredTestPropertiesTest.java153 logDebug(String.format("Skipping abstract class %s: not a test", in isTestClass()
175 logDebug(String.format("Skipping class %s: not a test", loadedClass.getName())); in isTestClass()
219 private void logDebug(String msg) { in logDebug() method in AAAPlusPlusVerifySysuiRequiredTestPropertiesTest