Home
last modified time | relevance | path

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

/device/google/sunfish/vibrator/drv2624/tests/
Dtest-vibrator.cpp140 ON_CALL(*mMockApi, setOlLraPeriod(_)).WillByDefault(Return(true)); in createMock()
205 EXPECT_CALL(*mMockApi, setOlLraPeriod(_)).Times(times); in relaxMock()
282 EXPECT_CALL(*mMockApi, setOlLraPeriod(mShortLraPeriod)) in TEST_P()
308 e += EXPECT_CALL(*mMockApi, setOlLraPeriod(mLongLraPeriod)).WillOnce(DoDefault()); in TEST_P()
418 e += EXPECT_CALL(*mMockApi, setOlLraPeriod(mShortLraPeriod)).WillOnce(DoDefault()); in TEST_P()
Dmocks.h25 MOCK_METHOD1(setOlLraPeriod, bool(uint32_t value));
Dtest-hwapi.cpp354 SetUint32Test::MakeParam("device/ol_lra_period", &Vibrator::HwApi::setOlLraPeriod),
/device/google/sunfish/vibrator/drv2624/
DVibrator.h40 virtual bool setOlLraPeriod(uint32_t value) = 0;
DVibrator.cpp263 mHwApi->setOlLraPeriod(lraPeriod); in Vibrator()
302 mHwApi->setOlLraPeriod(config->olLraPeriod); in on()
DHardware.h44 bool setOlLraPeriod(uint32_t value) override { return set(value, &mOlLraPeriod); } in setOlLraPeriod() function