Home
last modified time | relevance | path

Searched refs:performPwleEffect (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/core/java/com/android/server/vibrator/
DVibratorController.java433 private static native long performPwleEffect(long nativePtr, RampSegment[] effect, in performPwleEffect() method in VibratorController.NativeWrapper
492 return performPwleEffect(mNativePtr, primitives, braking, vibrationId); in composePwle()
/frameworks/native/services/vibratorservice/test/
DVibratorHalWrapperHidlV1_0Test.cpp346 ASSERT_TRUE(mWrapper->performPwleEffect(emptyPrimitives, callback).isUnsupported()); in TEST_F()
347 ASSERT_TRUE(mWrapper->performPwleEffect(multiplePrimitives, callback).isUnsupported()); in TEST_F()
DVibratorHalWrapperAidlTest.cpp694 auto result = mWrapper->performPwleEffect(emptyPrimitives, callback); in TEST_F()
699 result = mWrapper->performPwleEffect(multiplePrimitives, callback); in TEST_F()
704 result = mWrapper->performPwleEffect(multiplePrimitives, callback); in TEST_F()
/frameworks/native/services/vibratorservice/
DVibratorHalWrapper.cpp105 HalResult<void> HalWrapper::performPwleEffect(const std::vector<PrimitivePwle>&, in performPwleEffect() function in android::vibrator::HalWrapper
294 HalResult<void> AidlHalWrapper::performPwleEffect(const std::vector<PrimitivePwle>& primitives, in performPwleEffect() function in android::vibrator::AidlHalWrapper
/frameworks/native/services/vibratorservice/include/vibratorservice/
DVibratorHalWrapper.h370 virtual HalResult<void> performPwleEffect(
442 HalResult<void> performPwleEffect(
/frameworks/base/services/core/jni/
Dcom_android_server_vibrator_VibratorController.cpp345 return hal->performPwleEffect(primitives, callback); in vibratorPerformPwleEffect()