Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DVibratorHelper.java140 public void vibrateAuthSuccess(String reason) { in vibrateAuthSuccess() method in VibratorHelper
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ui/viewmodel/
H A DPromptViewModelTest.kt166 .vibrateAuthSuccess(any())
172 verify(vibrator).vibrateAuthSuccess(any())
265 verify(vibrator, never()).vibrateAuthSuccess(any())
278 verify(vibrator, never()).vibrateAuthSuccess(any())
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DBiometricsUnlockControllerTest.java520 verify(mVibratorHelper, never()).vibrateAuthSuccess(anyString()); in onSideFingerprintSuccess_recentPowerButtonPress_noHaptic()
540 verify(mVibratorHelper).vibrateAuthSuccess(anyString()); in onSideFingerprintSuccess_oldPowerButtonPress_playHaptic()
584 verify(mVibratorHelper).vibrateAuthSuccess(anyString()); in onSideFingerprintSuccess_recentGestureWakeUp_playHaptic()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/viewmodel/
H A DPromptViewModel.kt516 vibrateAuthSuccess("$TAG, modality = $modality BP::success")
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBiometricUnlockController.java772 mVibratorHelper.vibrateAuthSuccess( in vibrateSuccess()