Home
last modified time | relevance | path

Searched refs:performComposedEffect (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/services/core/java/com/android/server/vibrator/
DVibratorController.java394 private static native long performComposedEffect(long nativePtr, PrimitiveSegment[] effect, in performComposedEffect() method in VibratorController.NativeWrapper
452 return performComposedEffect(mNativePtr, primitives, vibrationId); in compose()
/frameworks/native/services/vibratorservice/test/
DVibratorHalWrapperAidlTest.cpp604 auto result = mWrapper->performComposedEffect(emptyEffects, callback); in TEST_F()
609 result = mWrapper->performComposedEffect(singleEffect, callback); in TEST_F()
614 result = mWrapper->performComposedEffect(multipleEffects, callback); in TEST_F()
658 auto result = mWrapper->performComposedEffect(multipleEffects, callback); in TEST_F()
663 result = mWrapper->performComposedEffect(multipleEffects, callback); in TEST_F()
668 result = mWrapper->performComposedEffect(multipleEffects, callback); in TEST_F()
DVibratorHalWrapperHidlV1_0Test.cpp331 ASSERT_TRUE(mWrapper->performComposedEffect(singleEffect, callback).isUnsupported()); in TEST_F()
332 ASSERT_TRUE(mWrapper->performComposedEffect(multipleEffects, callback).isUnsupported()); in TEST_F()
/frameworks/native/services/vibratorservice/benchmarks/
DVibratorHalControllerBenchmarks.cpp442 BENCHMARK_WRAPPER(VibratorPrimitivesBench, performComposedEffect, {
462 return hal->performComposedEffect(effects, callback); in __anon866670c61b02()
/frameworks/native/services/vibratorservice/include/vibratorservice/
DVibratorHalWrapper.h288 virtual HalResult<std::chrono::milliseconds> performComposedEffect(
360 HalResult<std::chrono::milliseconds> performComposedEffect(
/frameworks/native/services/vibratorservice/
DVibratorHalWrapper.cpp168 HalResult<milliseconds> HalWrapper::performComposedEffect(const std::vector<CompositeEffect>&, in performComposedEffect() function in android::vibrator::HalWrapper
341 HalResult<milliseconds> AidlHalWrapper::performComposedEffect( in performComposedEffect() function in android::vibrator::AidlHalWrapper
/frameworks/base/services/core/jni/
Dcom_android_server_vibrator_VibratorController.cpp298 return hal->performComposedEffect(effects, callback); in vibratorPerformComposedEffect()