Searched refs:setOdClamp (Results 1 – 6 of 6) sorted by relevance
38 MOCK_METHOD1(setOdClamp, bool(uint32_t value));
143 ON_CALL(*mMockApi, setOdClamp(_)).WillByDefault(Return(true)); in createMock()217 EXPECT_CALL(*mMockApi, setOdClamp(_)).Times(times); in relaxMock()305 e += EXPECT_CALL(*mMockApi, setOdClamp(mLongVoltageMax)).WillOnce(DoDefault()); in TEST_P()423 e += EXPECT_CALL(*mMockApi, setOdClamp(mShortVoltageMax)).WillOnce(DoDefault()); in TEST_P()
363 SetUint32Test::MakeParam("device/od_clamp", &Vibrator::HwApi::setOdClamp),
52 bool setOdClamp(uint32_t value) override { return set(value, &mOdClamp); } in setOdClamp() function
83 virtual bool setOdClamp(uint32_t value) = 0;
143 mHwApi->setOdClamp(config->odClamp); in on()