Home
last modified time | relevance | path

Searched refs:createWaveform (Results 1 – 10 of 10) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DRinger.java85 public VibrationEffect createWaveform(long[] timings, int[] amplitudes, int repeat) { in createWaveform() method in Ringer.VibrationEffectProxy
86 return VibrationEffect.createWaveform(timings, amplitudes, repeat); in createWaveform()
850 return vibrationEffectProxy.createWaveform( in loadDefaultRingVibrationEffect()
856 return vibrationEffectProxy.createWaveform(SIMPLE_VIBRATION_PATTERN, in createSimpleRingVibration()
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint2/domain/interactor/
DVibrationInteractor.kt70 private val VIBRATE_EFFECT_ERROR = VibrationEffect.createWaveform(longArrayOf(0, 5, 55, 60), -1) in vibrate()
/packages/apps/Settings/src/com/android/settings/biometrics2/ui/viewmodel/
DFingerprintEnrollEnrollingViewModel.java49 VibrationEffect.createWaveform(new long[]{0, 5, 55, 60}, -1);
/packages/apps/EmergencyInfo/EmergencyGestureAction/src/com/android/emergency/action/service/
DEmergencyActionForegroundService.java60 VibrationEffect.createWaveform(TIMINGS, AMPLITUDES, /*repeat=*/ -1);
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DRingerTest.java101 VibrationEffect.createWaveform(
104 VibrationEffect.createWaveform(
247 VibrationEffect.createWaveform(new long[]{100, 500, 700}, /* repeat= */ 1), in testValidSupportedRepeatingDefaultRingVibrationOverride()
/packages/apps/Settings/src/com/android/settings/biometrics2/ui/widget/
DUdfpsEnrollProgressBarDrawable.java58 VibrationEffect.createWaveform(new long[]{0, 5, 55, 60}, -1);
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint/
DUdfpsEnrollProgressBarDrawable.java58 VibrationEffect.createWaveform(new long[]{0, 5, 55, 60}, -1);
DFingerprintEnrollEnrolling.java155 VibrationEffect.createWaveform(new long[] {0, 5, 55, 60}, -1);
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertAudio.java498 VibrationEffect effect = VibrationEffect.createWaveform(vibrationPattern, repeatIndex); in playAlertTone()
/packages/services/Telephony/src/com/android/phone/
DPhoneUtils.java551 vibrator.vibrate(VibrationEffect.createWaveform(pattern, -1), in playSound()