Home
last modified time | relevance | path

Searched refs:performEffect (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/services/vibratorservice/test/
DVibratorHalWrapperHidlV1_1Test.cpp93 auto result = mWrapper->performEffect(Effect::CLICK, EffectStrength::LIGHT, callback); in TEST_F()
139 auto result = mWrapper->performEffect(Effect::TICK, EffectStrength::LIGHT, callback); in TEST_F()
144 result = mWrapper->performEffect(Effect::TICK, EffectStrength::MEDIUM, callback); in TEST_F()
147 result = mWrapper->performEffect(Effect::TICK, EffectStrength::STRONG, callback); in TEST_F()
150 result = mWrapper->performEffect(Effect::TICK, EffectStrength::STRONG, callback); in TEST_F()
161 auto result = mWrapper->performEffect(Effect::THUD, EffectStrength::LIGHT, callback); in TEST_F()
DVibratorHalWrapperHidlV1_2Test.cpp96 auto result = mWrapper->performEffect(Effect::CLICK, EffectStrength::LIGHT, callback); in TEST_F()
121 auto result = mWrapper->performEffect(Effect::TICK, EffectStrength::LIGHT, callback); in TEST_F()
166 auto result = mWrapper->performEffect(Effect::THUD, EffectStrength::LIGHT, callback); in TEST_F()
171 result = mWrapper->performEffect(Effect::THUD, EffectStrength::MEDIUM, callback); in TEST_F()
174 result = mWrapper->performEffect(Effect::THUD, EffectStrength::STRONG, callback); in TEST_F()
177 result = mWrapper->performEffect(Effect::THUD, EffectStrength::STRONG, callback); in TEST_F()
188 auto result = mWrapper->performEffect(Effect::TEXTURE_TICK, EffectStrength::LIGHT, callback); in TEST_F()
DVibratorHalWrapperHidlV1_3Test.cpp267 auto result = mWrapper->performEffect(Effect::CLICK, EffectStrength::LIGHT, callback); in TEST_F()
292 auto result = mWrapper->performEffect(Effect::TICK, EffectStrength::LIGHT, callback); in TEST_F()
317 auto result = mWrapper->performEffect(Effect::THUD, EffectStrength::LIGHT, callback); in TEST_F()
364 auto result = mWrapper->performEffect(Effect::TEXTURE_TICK, EffectStrength::LIGHT, callback); in TEST_F()
369 result = mWrapper->performEffect(Effect::TEXTURE_TICK, EffectStrength::MEDIUM, callback); in TEST_F()
372 result = mWrapper->performEffect(Effect::TEXTURE_TICK, EffectStrength::STRONG, callback); in TEST_F()
375 result = mWrapper->performEffect(Effect::TEXTURE_TICK, EffectStrength::STRONG, callback); in TEST_F()
DVibratorHalWrapperHidlV1_0Test.cpp291 auto result = mWrapper->performEffect(Effect::CLICK, EffectStrength::LIGHT, callback); in TEST_F()
296 result = mWrapper->performEffect(Effect::CLICK, EffectStrength::MEDIUM, callback); in TEST_F()
299 result = mWrapper->performEffect(Effect::CLICK, EffectStrength::STRONG, callback); in TEST_F()
302 result = mWrapper->performEffect(Effect::CLICK, EffectStrength::STRONG, callback); in TEST_F()
313 auto result = mWrapper->performEffect(Effect::TICK, EffectStrength::LIGHT, callback); in TEST_F()
DVibratorHalWrapperAidlTest.cpp507 auto result = mWrapper->performEffect(Effect::CLICK, EffectStrength::LIGHT, callback); in TEST_F()
512 result = mWrapper->performEffect(Effect::POP, EffectStrength::MEDIUM, callback); in TEST_F()
517 result = mWrapper->performEffect(Effect::THUD, EffectStrength::STRONG, callback); in TEST_F()
548 auto result = mWrapper->performEffect(Effect::CLICK, EffectStrength::LIGHT, callback); in TEST_F()
553 result = mWrapper->performEffect(Effect::POP, EffectStrength::MEDIUM, callback); in TEST_F()
556 result = mWrapper->performEffect(Effect::THUD, EffectStrength::STRONG, callback); in TEST_F()
DVibratorHalControllerTest.cpp66 MOCK_METHOD(vibrator::HalResult<milliseconds>, performEffect,
/frameworks/native/services/vibratorservice/
DVibratorHalWrapper.cpp253 HalResult<milliseconds> AidlHalWrapper::performEffect( in performEffect() function in android::vibrator::AidlHalWrapper
518 HalResult<milliseconds> HidlHalWrapperV1_0::performEffect( in performEffect() function in android::vibrator::HidlHalWrapperV1_0
532 HalResult<milliseconds> HidlHalWrapperV1_1::performEffect( in performEffect() function in android::vibrator::HidlHalWrapperV1_1
550 HalResult<milliseconds> HidlHalWrapperV1_2::performEffect( in performEffect() function in android::vibrator::HidlHalWrapperV1_2
577 HalResult<milliseconds> HidlHalWrapperV1_3::performEffect( in performEffect() function in android::vibrator::HidlHalWrapperV1_3
/frameworks/native/services/vibratorservice/include/vibratorservice/
DVibratorHalWrapper.h362 virtual HalResult<std::chrono::milliseconds> performEffect(
434 HalResult<std::chrono::milliseconds> performEffect(
525 HalResult<std::chrono::milliseconds> performEffect(
539 HalResult<std::chrono::milliseconds> performEffect(
553 HalResult<std::chrono::milliseconds> performEffect(
569 HalResult<std::chrono::milliseconds> performEffect(
/frameworks/base/services/core/java/com/android/server/vibrator/
DVibratorController.java427 private static native long performEffect(long nativePtr, long effect, long strength, in performEffect() method in VibratorController.NativeWrapper
482 return performEffect(mNativePtr, effect, strength, vibrationId); in perform()
/frameworks/native/services/vibratorservice/benchmarks/
DVibratorHalControllerBenchmarks.cpp481 BENCHMARK_WRAPPER(SlowVibratorEffectsBench, performEffect, {
495 return hal->performEffect(effect, strength, cb.completeFn()); in __anon599d61ff1302()
/frameworks/base/services/core/jni/
Dcom_android_server_vibrator_VibratorController.cpp289 return hal->performEffect(effectType, effectStrength, callback); in vibratorPerformEffect()