Home
last modified time | relevance | path

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

/hardware/google/pixel/vibrator/drv2624/tests/
Dmocks.h37 MOCK_METHOD1(setLraWaveShape, bool(uint32_t value));
Dtest-vibrator.cpp142 ON_CALL(*mMockApi, setLraWaveShape(_)).WillByDefault(Return(true)); in createMock()
216 EXPECT_CALL(*mMockApi, setLraWaveShape(_)).Times(times); in relaxMock()
304 e += EXPECT_CALL(*mMockApi, setLraWaveShape(0)).WillOnce(DoDefault()); in TEST_P()
422 e += EXPECT_CALL(*mMockApi, setLraWaveShape(1)).WillOnce(DoDefault()); in TEST_P()
Dtest-hwapi.cpp362 &Vibrator::HwApi::setLraWaveShape),
/hardware/google/pixel/vibrator/drv2624/
DHardware.h51 bool setLraWaveShape(uint32_t value) override { return set(value, &mLraWaveShape); } in setLraWaveShape() function
DVibrator.h80 virtual bool setLraWaveShape(uint32_t value) = 0;
DVibrator.cpp142 mHwApi->setLraWaveShape(toUnderlying(config->shape)); in on()