Home
last modified time | relevance | path

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

/device/google/sunfish/vibrator/drv2624/tests/
Dmocks.h51 MOCK_METHOD1(getCloseLoopThreshold, bool(uint32_t *value));
Dtest-hwcal.cpp90 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F()
103 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F()
Dtest-vibrator.cpp151 ON_CALL(*mMockCal, getCloseLoopThreshold(_)) in createMock()
223 EXPECT_CALL(*mMockCal, getCloseLoopThreshold(_)).Times(times); in relaxMock()
274 EXPECT_CALL(*mMockCal, getCloseLoopThreshold(_)).WillOnce(DoDefault()); in TEST_P()
/device/google/sunfish/vibrator/drv2624/
DVibrator.h103 virtual bool getCloseLoopThreshold(uint32_t *value) = 0;
DHardware.h136 bool getCloseLoopThreshold(uint32_t *value) override { in getCloseLoopThreshold() function
DVibrator.cpp197 mHwCal->getCloseLoopThreshold(&mCloseLoopThreshold); in Vibrator()