Home
last modified time | relevance | path

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

/device/google/coral/vibrator/tests/
Dmocks.h25 MOCK_METHOD1(setRedc, bool(uint32_t value));
Dtest-vibrator.cpp170 EXPECT_CALL(*mMockApi, setRedc(_)).Times(times); in relaxMock()
228 EXPECT_CALL(*mMockApi, setRedc(redcVal)).InSequence(redcSeq).WillOnce(::testing::Return(true)); in TEST_F()
Dtest-hwapi.cpp277 SetUint32Test::MakeParam("REDC_FILEPATH", &Vibrator::HwApi::setRedc),
/device/google/coral/vibrator/
DVibrator.h41 virtual bool setRedc(uint32_t value) = 0;
DHardware.h55 bool setRedc(uint32_t value) override { return set(value, mRedc); } in setRedc() function
DVibrator.cpp92 mHwApi->setRedc(caldata); in Vibrator()