Home
last modified time | relevance | path

Searched refs:processTouch (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/
H A DTouchProcessor.kt42 fun processTouch( regex
H A DSinglePointerTouchProcessor.kt39 override fun processTouch(
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
H A DUdfpsControllerTest.java1277 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in fingerDown_falsingManagerInformed()
1295 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in onTouch_withNewTouchDetection_shouldCallNewFingerprintManagerPath()
1303 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in onTouch_withNewTouchDetection_shouldCallNewFingerprintManagerPath()
1374 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in onTouch_WithNewTouchDetection_forwardToKeyguard()
1415 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in onTouch_withNewTouchDetection_ignoreIfAuthPaused()
1459 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in onTouch_withNewTouchDetection_ignoreAuthPauseIfFingerDown()
1475 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in onTouch_withNewTouchDetection_ignoreAuthPauseIfFingerDown()
1515 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in onTouch_withNewTouchDetection_pilferPointer()
1525 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in onTouch_withNewTouchDetection_pilferPointer()
1563 when(mSinglePointerTouchProcessor.processTouch(any(), anyInt(), any())).thenReturn( in onTouch_withNewTouchDetection_doNotPilferPointer()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/
H A DSinglePointerTouchProcessorTest.kt41 fun processTouch() { regex
46 underTest.processTouch(
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DUdfpsController.java573 final TouchProcessorResult result = mTouchProcessor.processTouch(event, mActivePointerId, in newOnTouch()