Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/
DUdfpsControllerTest.java820 mUdfpsController.onAodInterrupt(0, 0, 2f, 3f); in aodInterruptParameterized()
849 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in cancelAodInterruptParameterized()
881 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in onFingerUp_displayConfigurationParameterized()
958 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in aodInterruptTimeoutParameterized()
990 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in aodInterruptCancelTimeoutActionOnFingerUpParameterized()
1062 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in aodInterruptScreenOffParameterized()
1085 mUdfpsController.onAodInterrupt(0, 0, 0f, 0f); in aodInterrupt_fingerprintNotRunningParameterized()
1304 mUdfpsController.onAodInterrupt(0, 0, 0, 0); in onAodDownAndDownTouchReceived()
1402 mUdfpsController.onAodInterrupt(0, 0, 0, 0); in onAodInterrupt_onAcquiredGood_fingerNoLongerDown()
1429 mUdfpsController.onAodInterrupt(0, 0, 0, 0); in playHaptic_onAodInterrupt_onAcquiredBad_performHapticFeedback()
DAuthControllerTest.java771 mAuthController.onAodInterrupt(pos, pos, majorMinor, majorMinor); in testOnAodInterrupt()
772 verify(mUdfpsController).onAodInterrupt(eq(pos), eq(pos), eq(majorMinor), eq(majorMinor)); in testOnAodInterrupt()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
DDozeTriggersTest.java420 verify(mAuthController, never()).onAodInterrupt(anyInt(), anyInt(), anyFloat(), anyFloat()); in testOnSensor_Fingerprint()
427 verify(mAuthController).onAodInterrupt(eq(screenX), eq(screenY), eq(major), eq(minor)); in testOnSensor_Fingerprint()
462 verify(mAuthController).onAodInterrupt(anyInt(), anyInt(), anyFloat(), anyFloat()); in udfpsLongPress_triggeredWhenAodPaused()
481 verify(mAuthController).onAodInterrupt(anyInt(), anyInt(), anyFloat(), anyFloat()); in udfpsLongPress_triggeredWhenAodPausing()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthController.java698 public void onAodInterrupt(int screenX, int screenY, float major, float minor) { in onAodInterrupt() method in AuthController
702 mUdfpsController.onAodInterrupt(screenX, screenY, major, minor); in onAodInterrupt()
DUdfpsController.java921 void onAodInterrupt(int screenX, int screenY, float major, float minor) { in onAodInterrupt() method in UdfpsController
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeTriggers.java350 mAuthController.onAodInterrupt((int) screenX, (int) screenY, in onSensor()