Home
last modified time | relevance | path

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

/hardware/google/pixel/vibrator/drv2624/tests/
Dmocks.h52 MOCK_METHOD1(getShortVoltageMax, bool(uint32_t *value));
Dtest-hwcal.cpp180 EXPECT_TRUE(mHwCal->getShortVoltageMax(&actual)); in TEST_F()
193 EXPECT_TRUE(mHwCal->getShortVoltageMax(&actual)); in TEST_F()
Dtest-vibrator.cpp156 ON_CALL(*mMockCal, getShortVoltageMax(_)) in createMock()
226 EXPECT_CALL(*mMockCal, getShortVoltageMax(_)).Times(times); in relaxMock()
279 EXPECT_CALL(*mMockCal, getShortVoltageMax(_)).WillOnce(DoDefault()); in TEST_P()
/hardware/google/pixel/vibrator/drv2624/
DHardware.h125 bool getShortVoltageMax(uint32_t *value) override { in getShortVoltageMax() function
DVibrator.h103 virtual bool getShortVoltageMax(uint32_t *value) = 0;
DVibrator.cpp88 mHwCal->getShortVoltageMax(&shortVoltageMax); in Vibrator()