Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/vibrator/
H A 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()
/aosp12/frameworks/native/services/vibratorservice/test/
H A 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()
H A DVibratorHalWrapperHidlV1_0Test.cpp331 ASSERT_TRUE(mWrapper->performComposedEffect(singleEffect, callback).isUnsupported()); in TEST_F()
332 ASSERT_TRUE(mWrapper->performComposedEffect(multipleEffects, callback).isUnsupported()); in TEST_F()
/aosp12/frameworks/native/services/vibratorservice/benchmarks/
H A DVibratorHalControllerBenchmarks.cpp442 BENCHMARK_WRAPPER(VibratorPrimitivesBench, performComposedEffect, {
462 return hal->performComposedEffect(effects, callback); in __anon763aa56b1b02()
/aosp12/frameworks/native/services/vibratorservice/include/vibratorservice/
H A DVibratorHalWrapper.h288 virtual HalResult<std::chrono::milliseconds> performComposedEffect(
360 HalResult<std::chrono::milliseconds> performComposedEffect(
/aosp12/frameworks/native/services/vibratorservice/
H A 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
/aosp12/frameworks/base/services/core/jni/
H A Dcom_android_server_vibrator_VibratorController.cpp298 return hal->performComposedEffect(effects, callback); in vibratorPerformComposedEffect()