Home
last modified time | relevance | path

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

/device/google/sunfish/vibrator/drv2624/tests/
Dmocks.h37 MOCK_METHOD1(setOdClamp, bool(uint32_t value));
Dtest-vibrator.cpp146 ON_CALL(*mMockApi, setOdClamp(_)).WillByDefault(Return(true)); in createMock()
217 EXPECT_CALL(*mMockApi, setOdClamp(_)).Times(times); in relaxMock()
307 e += EXPECT_CALL(*mMockApi, setOdClamp(mLongVoltageMax)).WillOnce(DoDefault()); in TEST_P()
417 e += EXPECT_CALL(*mMockApi, setOdClamp(mShortVoltageMax)).WillOnce(DoDefault()); in TEST_P()
Dtest-hwapi.cpp358 SetUint32Test::MakeParam("device/od_clamp", &Vibrator::HwApi::setOdClamp),
/device/google/sunfish/vibrator/drv2624/
DVibrator.h83 virtual bool setOdClamp(uint32_t value) = 0;
DHardware.h56 bool setOdClamp(uint32_t value) override { return set(value, &mOdClamp); } in setOdClamp() function
DVibrator.cpp301 mHwApi->setOdClamp(config->odClamp[volOffset]); in on()