Home
last modified time | relevance | path

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

/hardware/google/pixel/vibrator/drv2624/tests/
Dmocks.h51 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.cpp155 ON_CALL(*mMockCal, getShortVoltageMax(_)) in createMock()
224 EXPECT_CALL(*mMockCal, getShortVoltageMax(_)).Times(times); in relaxMock()
277 EXPECT_CALL(*mMockCal, getShortVoltageMax(_)).WillOnce(DoDefault()); in TEST_P()
/hardware/google/pixel/vibrator/drv2624/
DVibrator.h100 virtual bool getShortVoltageMax(uint32_t *value) = 0;
DHardware.h122 bool getShortVoltageMax(uint32_t *value) override { in getShortVoltageMax() function
DVibrator.cpp84 mHwCal->getShortVoltageMax(&shortVoltageMax); in Vibrator()