Home
last modified time | relevance | path

Searched refs:perform_1_1 (Results 1 – 10 of 10) sorted by relevance

/aosp12/hardware/interfaces/vibrator/1.1/vts/functional/
H A DVtsHalVibratorV1_1TargetTest.cpp69 vibrator->perform_1_1(Effect_1_1::CLICK, EffectStrength::MEDIUM, validatePerformEffect); in TEST_P()
70 vibrator->perform_1_1(Effect_1_1::TICK, EffectStrength::STRONG, validatePerformEffect); in TEST_P()
80 vibrator->perform_1_1(badEffect, EffectStrength::LIGHT, validatePerformEffectBadInput)); in TEST_P()
90 vibrator->perform_1_1(badEffect, EffectStrength::LIGHT, validatePerformEffectBadInput)); in TEST_P()
99 EXPECT_OK(vibrator->perform_1_1(Effect_1_1::CLICK, badStrength, validatePerformEffectBadInput)); in TEST_P()
108 EXPECT_OK(vibrator->perform_1_1(Effect_1_1::CLICK, badStrength, validatePerformEffectBadInput)); in TEST_P()
/aosp12/frameworks/native/services/vibratorservice/test/
H A DVibratorHalWrapperHidlV1_1Test.cpp51 MOCK_METHOD(hardware::Return<void>, perform_1_1,
104 perform_1_1(Eq(V1_1::Effect_1_1::TICK), Eq(V1_0::EffectStrength::LIGHT), _)) in TEST_F()
115 perform_1_1(Eq(V1_1::Effect_1_1::TICK), Eq(V1_0::EffectStrength::MEDIUM), _)) in TEST_F()
123 perform_1_1(Eq(V1_1::Effect_1_1::TICK), Eq(V1_0::EffectStrength::STRONG), _)) in TEST_F()
H A DVibratorHalWrapperHidlV1_2Test.cpp52 MOCK_METHOD(hardware::Return<void>, perform_1_1,
107 perform_1_1(Eq(V1_1::Effect_1_1::TICK), Eq(V1_0::EffectStrength::LIGHT), _)) in TEST_F()
H A DVibratorHalWrapperHidlV1_3Test.cpp57 MOCK_METHOD(hardware::Return<void>, perform_1_1,
278 perform_1_1(Eq(V1_1::Effect_1_1::TICK), Eq(V1_0::EffectStrength::LIGHT), _)) in TEST_F()
/aosp12/hardware/interfaces/vibrator/1.3/example/
H A DVibrator.h44 Return<void> perform_1_1(V1_1::Effect_1_1 effect, EffectStrength strength,
H A DVibrator.cpp73 Return<void> Vibrator::perform_1_1(V1_1::Effect_1_1 effect, EffectStrength strength, in perform_1_1() function in android::hardware::vibrator::V1_3::implementation::Vibrator
/aosp12/hardware/interfaces/vibrator/1.1/
H A DIVibrator.hal37 perform_1_1(Effect_1_1 effect, EffectStrength strength)
/aosp12/hardware/interfaces/vibrator/bench/
H A Dbenchmark.cpp209 BENCHMARK_WRAPPER(VibratorEffectsBench_V1_1, perform_1_1,
210 { performBench(&state, &V1_1::IVibrator::perform_1_1); });
/aosp12/frameworks/native/services/vibratorservice/
H A DVibratorHalWrapper.cpp597 return performInternal(&V1_1::IVibrator::perform_1_1, getHal(), in performEffect()
615 return performInternal(&V1_2::IVibrator::perform_1_1, getHal(), in performEffect()
642 return performInternal(&V1_3::IVibrator::perform_1_1, getHal(), in performEffect()
/aosp12/frameworks/native/cmds/idlcli/vibrator/
H A DCommandPerform.cpp150 hidlRet = hal->call(&V1_1::IVibrator::perform_1_1, in doMain()