Home
last modified time | relevance | path

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

/device/google/coral/vibrator/tests/
Dmocks.h33 MOCK_METHOD1(setEffectScale, bool(uint32_t value));
Dtest-vibrator.cpp178 EXPECT_CALL(*mMockApi, setEffectScale(_)).Times(times); in relaxMock()
345 EXPECT_CALL(*mMockApi, setEffectScale(amplitudeToScale(amplitude))) in TEST_F()
405 EXPECT_CALL(*mMockApi, setEffectScale(scale->second)) in TEST_P()
429 EXPECT_CALL(*mMockApi, setEffectScale(0)).InSequence(s4).WillOnce(::testing::Return(true)); in TEST_P()
Dtest-hwapi.cpp281 SetUint32Test::MakeParam("EFFECT_SCALE_PATH", &Vibrator::HwApi::setEffectScale),
/device/google/coral/vibrator/
DVibrator.h64 virtual bool setEffectScale(uint32_t value) = 0;
DHardware.h63 bool setEffectScale(uint32_t value) override { return set(value, mEffectScale); } in setEffectScale() function
DVibrator.cpp167 if (!mHwApi->setEffectScale(scale)) { in setEffectAmplitude()