Home
last modified time | relevance | path

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

/hardware/google/pixel/vibrator/cs40l25/tests/
Dmocks.h28 MOCK_METHOD1(setRedc, bool(uint32_t value));
Dtest-hwapi.cpp308 SetUint32Test::MakeParam("device/redc_stored", &Vibrator::HwApi::setRedc),
Dtest-vibrator.cpp244 EXPECT_CALL(*mMockApi, setRedc(_)).Times(times); in relaxMock()
314 EXPECT_CALL(*mMockApi, setRedc(redcVal)).InSequence(redcSeq).WillOnce(Return(true)); in TEST_F()
/hardware/google/pixel/vibrator/cs40l26/tests/
Dmocks.h28 MOCK_METHOD1(setRedc, bool(std::string value));
Dtest-hwapi.cpp280 SetStringTest::MakeParam("calibration/redc_stored", &Vibrator::HwApi::setRedc),
Dtest-vibrator.cpp290 EXPECT_CALL(*mMockApi, setRedc(_)).Times(times); in relaxMock()
369 EXPECT_CALL(*mMockApi, setRedc(redcVal)).InSequence(redcSeq).WillOnce(Return(true)); in TEST_F()
/hardware/google/pixel/vibrator/cs40l25/
DHardware.h56 bool setRedc(uint32_t value) override { return set(value, &mRedc); } in setRedc() function
DVibrator.h43 virtual bool setRedc(uint32_t value) = 0;
DVibrator.cpp238 mHwApi->setRedc(caldata);
/hardware/google/pixel/vibrator/cs40l26/
DVibrator.h54 virtual bool setRedc(std::string value) = 0;
DHardware.h87 bool setRedc(std::string value) override { return set(value, &mRedc); } in setRedc() function
DVibrator.cpp253 mHwApi->setRedc(caldata);
926 mHwApi->setRedc(caldata); in createBandwidthAmplitudeMap()