Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
H A DDozeTriggersTest.java350 verify(mAuthController, never()).onAodInterrupt(anyInt(), anyInt(), anyFloat(), anyFloat()); in testOnSensor_Fingerprint()
357 verify(mAuthController).onAodInterrupt(eq(screenX), eq(screenY), eq(major), eq(minor)); in testOnSensor_Fingerprint()
392 verify(mAuthController).onAodInterrupt(anyInt(), anyInt(), anyFloat(), anyFloat()); in udfpsLongPress_triggeredWhenAodPaused()
411 verify(mAuthController).onAodInterrupt(anyInt(), anyInt(), anyFloat(), anyFloat()); in udfpsLongPress_triggeredWhenAodPausing()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
H A DUdfpsControllerTest.java823 mUdfpsController.onAodInterrupt(0, 0, 2f, 3f); in aodInterruptParameterized()
863 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in cancelAodInterruptParameterized()
893 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in onFingerUp_displayConfigurationParameterized()
968 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in aodInterruptTimeoutParameterized()
1002 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in aodInterruptCancelTimeoutActionOnFingerUpParameterized()
1071 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in aodInterruptScreenOffParameterized()
1094 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in aodInterrupt_fingerprintNotRunningParameterized()
1670 mUdfpsController.onAodInterrupt(0, 0, 0, 0); in onAodInterrupt_onAcquiredGood_fingerNoLongerDown()
1697 mUdfpsController.onAodInterrupt(0, 0, 0, 0); in playHaptic_onAodInterrupt_oneWayHapticsDisabled_onAcquiredBad_usesVibrate()
1721 mUdfpsController.onAodInterrupt(0, 0, 0, 0); in playHaptic_onAodInterrupt_oneWayHapticsEnabled_onAcquiredBad_performHapticFeedback()
[all …]
H A DAuthControllerTest.java815 mAuthController.onAodInterrupt(pos, pos, majorMinor, majorMinor); in testOnAodInterrupt()
816 verify(mUdfpsController).onAodInterrupt(eq(pos), eq(pos), eq(majorMinor), eq(majorMinor)); in testOnAodInterrupt()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DAuthController.java725 public void onAodInterrupt(int screenX, int screenY, float major, float minor) { in onAodInterrupt() method in AuthController
729 mUdfpsController.onAodInterrupt(screenX, screenY, major, minor); in onAodInterrupt()
H A DUdfpsController.java1035 void onAodInterrupt(int screenX, int screenY, float major, float minor) { in onAodInterrupt() method in UdfpsController
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeTriggers.java341 mAuthController.onAodInterrupt((int) screenX, (int) screenY, in onSensor()