Home
last modified time | relevance | path

Searched refs:InteractionEvent (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/
DSinglePointerTouchProcessorTest.kt97 expectedInteractionEvent = InteractionEvent.DOWN, in <lambda>()
104 expectedInteractionEvent = InteractionEvent.UNCHANGED, in <lambda>()
111 expectedInteractionEvent = InteractionEvent.UP, in <lambda>()
119 expectedInteractionEvent = InteractionEvent.DOWN, in <lambda>()
126 expectedInteractionEvent = InteractionEvent.UNCHANGED, in <lambda>()
133 expectedInteractionEvent = InteractionEvent.UP, in <lambda>()
141 expectedInteractionEvent = InteractionEvent.DOWN, in <lambda>()
148 expectedInteractionEvent = InteractionEvent.UNCHANGED, in <lambda>()
155 expectedInteractionEvent = InteractionEvent.UNCHANGED, in <lambda>()
162 expectedInteractionEvent = InteractionEvent.UP, in <lambda>()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/
DSinglePointerTouchProcessor.kt99 ProcessedTouch(InteractionEvent.DOWN, data.pointerId, data) in processActionMove()
104 ProcessedTouch(InteractionEvent.UP, INVALID_POINTER_ID, data) in processActionMove()
109 ProcessedTouch(InteractionEvent.UNCHANGED, pointerOnSensorId, data) in processActionMove()
117 ProcessedTouch(InteractionEvent.UP, pointerOnSensorId = INVALID_POINTER_ID, data) in processActionUp()
124 ProcessedTouch(InteractionEvent.UNCHANGED, pointerOnSensorId, data) in processActionUp()
129 return ProcessedTouch(InteractionEvent.CANCEL, pointerOnSensorId = INVALID_POINTER_ID, data) in processActionCancel()
DInteractionEvent.kt22 enum class InteractionEvent { class
DTouchProcessorResult.kt35 val event: InteractionEvent,
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/
DUdfpsControllerTest.java82 import com.android.systemui.biometrics.udfps.InteractionEvent;
401 givenFingerEvent(InteractionEvent.DOWN, InteractionEvent.UP, false); in onActionDownTouch_whenCanDismissLockScreen_entersDevice()
433 givenFingerEvent(InteractionEvent.DOWN, InteractionEvent.UP, false); in onActionMoveTouch_whenCanDismissLockScreen_entersDevice()
459 givenFingerEvent(InteractionEvent.DOWN, InteractionEvent.UNCHANGED, false); in onMultipleTouch_whenCanDismissLockScreen_entersDeviceOnce()
665 InteractionEvent.DOWN, 1, touchData); in onTouch_propagatesTouchInNativeOrientationAndResolutionParameterized()
754 InteractionEvent.DOWN, 1 /* pointerId */, touchData); in fingerDownParameterized()
876 givenFingerEvent(InteractionEvent.DOWN, InteractionEvent.UP, false); in onFingerUp_displayConfigurationParameterized()
994 givenFingerEvent(InteractionEvent.DOWN, InteractionEvent.UP, false); in aodInterruptCancelTimeoutActionOnFingerUpParameterized()
1094 givenFingerEvent(InteractionEvent.DOWN, InteractionEvent.UP, true); in playHapticOnTouchUdfpsArea_a11yTouchExplorationEnabled()
1114 givenFingerEvent(InteractionEvent.DOWN, InteractionEvent.UP, false); in noHapticOnTouchUdfpsArea_a11yTouchExplorationDisabled()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DUdfpsController.java76 import com.android.systemui.biometrics.udfps.InteractionEvent;
507 private static int toBiometricTouchReportedTouchType(InteractionEvent event) { in toBiometricTouchReportedTouchType()
520 private void logBiometricTouch(InteractionEvent event, NormalizedTouchData data) { in logBiometricTouch()
521 if (event == InteractionEvent.UNCHANGED) { in logBiometricTouch()
630 if (InteractionEvent.CANCEL.equals(processedTouch.getEvent())) { in onTouch()