Home
last modified time | relevance | path

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

/hardware/google/pixel/vibrator/drv2624/tests/
Dmocks.h48 MOCK_METHOD1(getCloseLoopThreshold, bool(uint32_t *value));
Dtest-hwcal.cpp89 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F()
102 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F()
Dtest-vibrator.cpp147 ON_CALL(*mMockCal, getCloseLoopThreshold(_)) in createMock()
221 EXPECT_CALL(*mMockCal, getCloseLoopThreshold(_)).Times(times); in relaxMock()
272 EXPECT_CALL(*mMockCal, getCloseLoopThreshold(_)).WillOnce(DoDefault()); in TEST_P()
/hardware/google/pixel/vibrator/drv2624/
DVibrator.h94 virtual bool getCloseLoopThreshold(uint32_t *value) = 0;
DHardware.h112 bool getCloseLoopThreshold(uint32_t *value) override { in getCloseLoopThreshold() function
DVibrator.cpp76 mHwCal->getCloseLoopThreshold(&mCloseLoopThreshold); in Vibrator()