Home
last modified time | relevance | path

Searched refs:perform_1_3 (Results 1 – 8 of 8) sorted by relevance

/aosp12/hardware/interfaces/vibrator/1.3/vts/functional/
H A DVtsHalVibratorV1_3TargetTest.cpp89 EXPECT_OK(vibrator->perform_1_3(effect, strength, validatePerformEffect)); in TEST_P()
100 EXPECT_OK(vibrator->perform_1_3(badEffect, EffectStrength::LIGHT, in TEST_P()
110 EXPECT_OK(vibrator->perform_1_3(badEffect, EffectStrength::LIGHT, in TEST_P()
120 EXPECT_OK(vibrator->perform_1_3(Effect::THUD, badStrength, in TEST_P()
130 EXPECT_OK(vibrator->perform_1_3(Effect::THUD, badStrength, in TEST_P()
/aosp12/frameworks/native/services/vibratorservice/test/
H A DVibratorHalWrapperHidlV1_3Test.cpp62 MOCK_METHOD(hardware::Return<void>, perform_1_3,
328 perform_1_3(Eq(V1_3::Effect::TEXTURE_TICK), Eq(V1_0::EffectStrength::LIGHT), _)) in TEST_F()
339 perform_1_3(Eq(V1_3::Effect::TEXTURE_TICK), Eq(V1_0::EffectStrength::MEDIUM), in TEST_F()
348 perform_1_3(Eq(V1_3::Effect::TEXTURE_TICK), Eq(V1_0::EffectStrength::STRONG), in TEST_F()
/aosp12/hardware/interfaces/vibrator/1.3/example/
H A DVibrator.h54 Return<void> perform_1_3(Effect effect, EffectStrength strength, perform_cb _hidl_cb) override;
H A DVibrator.cpp103 Return<void> Vibrator::perform_1_3(Effect effect, EffectStrength strength, perform_cb _hidl_cb) { in perform_1_3() function in android::hardware::vibrator::V1_3::implementation::Vibrator
/aosp12/hardware/interfaces/vibrator/1.3/
H A DIVibrator.hal57 perform_1_3(Effect effect, EffectStrength strength)
/aosp12/hardware/interfaces/vibrator/bench/
H A Dbenchmark.cpp277 BENCHMARK_WRAPPER(VibratorEffectsBench_V1_3, perform_1_3,
278 { performBench(&state, &V1_3::IVibrator::perform_1_3); });
/aosp12/frameworks/native/cmds/idlcli/vibrator/
H A DCommandPerform.cpp143 hal->call(&V1_3::IVibrator::perform_1_3, static_cast<V1_3::Effect>(mEffect), in doMain()
/aosp12/frameworks/native/services/vibratorservice/
H A DVibratorHalWrapper.cpp650 return performInternal(&V1_3::IVibrator::perform_1_3, getHal(), in performEffect()