Home
last modified time | relevance | path

Searched refs:getSupportedEffects (Results 1 – 18 of 18) sorted by relevance

/aosp12/frameworks/native/cmds/idlcli/vibrator/
H A DCommandGetSupportedEffects.cpp52 auto status = hal->call(&aidl::IVibrator::getSupportedEffects, &effects); in doMain()
/aosp12/hardware/interfaces/vibrator/aidl/aidl_api/android.hardware.vibrator/1/android/hardware/vibrator/
H A DIVibrator.aidl25 android.hardware.vibrator.Effect[] getSupportedEffects(); in getSupportedEffects() method
/aosp12/hardware/interfaces/vibrator/aidl/android/hardware/vibrator/
H A DIVibrator.aidl126 Effect[] getSupportedEffects(); in getSupportedEffects() method
/aosp12/hardware/interfaces/vibrator/aidl/aidl_api/android.hardware.vibrator/2/android/hardware/vibrator/
H A DIVibrator.aidl41 android.hardware.vibrator.Effect[] getSupportedEffects(); in getSupportedEffects() method
/aosp12/hardware/interfaces/vibrator/aidl/aidl_api/android.hardware.vibrator/current/android/hardware/vibrator/
H A DIVibrator.aidl41 android.hardware.vibrator.Effect[] getSupportedEffects(); in getSupportedEffects() method
/aosp12/hardware/interfaces/vibrator/bench/
H A Dbenchmark.cpp377 BENCHMARK_WRAPPER(VibratorBench_Aidl, getSupportedEffects, {
381 mVibrator->getSupportedEffects(&supportedEffects);
482 mVibrator->getSupportedEffects(&supported);
/aosp12/hardware/interfaces/vibrator/aidl/default/include/vibrator-impl/
H A DVibrator.h34 ndk::ScopedAStatus getSupportedEffects(std::vector<Effect>* _aidl_return) override;
/aosp12/hardware/interfaces/vibrator/aidl/default/
H A DVibrator.cpp100 ndk::ScopedAStatus Vibrator::getSupportedEffects(std::vector<Effect>* _aidl_return) { in getSupportedEffects() function in aidl::android::hardware::vibrator::Vibrator
200 return getSupportedEffects(_aidl_return); in getSupportedAlwaysOnEffects()
/aosp12/hardware/google/pixel/vibrator/drv2624/
H A DVibrator.h145 ndk::ScopedAStatus getSupportedEffects(std::vector<Effect> *_aidl_return) override;
H A DVibrator.cpp234 ndk::ScopedAStatus Vibrator::getSupportedEffects(std::vector<Effect> *_aidl_return) { in getSupportedEffects() function in aidl::android::hardware::vibrator::Vibrator
/aosp12/hardware/google/pixel/vibrator/cs40l26/
H A DVibrator.h109 ndk::ScopedAStatus getSupportedEffects(std::vector<Effect> *_aidl_return) override;
H A DVibrator.cpp434 ndk::ScopedAStatus Vibrator::getSupportedEffects(std::vector<Effect> *_aidl_return) { in getSupportedEffects() function in aidl::android::hardware::vibrator::Vibrator
/aosp12/hardware/google/pixel/vibrator/cs40l25/
H A DVibrator.h147 ndk::ScopedAStatus getSupportedEffects(std::vector<Effect> *_aidl_return) override;
H A DVibrator.cpp317 ndk::ScopedAStatus Vibrator::getSupportedEffects(std::vector<Effect> *_aidl_return) { in getSupportedEffects() function in aidl::android::hardware::vibrator::Vibrator
/aosp12/frameworks/native/services/vibratorservice/test/
H A DVibratorHalWrapperAidlTest.cpp68 MOCK_METHOD(Status, getSupportedEffects, (std::vector<Effect> * ret), (override));
323 EXPECT_CALL(*mMockHal.get(), getSupportedEffects(_)) in TEST_F()
421 EXPECT_CALL(*mMockHal.get(), getSupportedEffects(_)) in TEST_F()
H A DVibratorManagerHalWrapperAidlTest.cpp64 MOCK_METHOD(Status, getSupportedEffects, (std::vector<Effect> * ret), (override));
/aosp12/hardware/interfaces/vibrator/aidl/vts/
H A DVtsHalVibratorTargetTest.cpp235 ASSERT_TRUE(vibrator->getSupportedEffects(&supported).isOk()); in TEST_P()
262 ASSERT_TRUE(vibrator->getSupportedEffects(&supported).isOk()); in TEST_P()
/aosp12/frameworks/native/services/vibratorservice/
H A DVibratorHalWrapper.cpp378 auto result = getHal()->getSupportedEffects(&supportedEffects); in getSupportedEffectsInternal()