Home
last modified time | relevance | path

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

/aosp12/hardware/google/pixel/vibrator/drv2624/tests/
H A Dmocks.h52 MOCK_METHOD1(getShortVoltageMax, bool(uint32_t *value));
H A Dtest-hwcal.cpp180 EXPECT_TRUE(mHwCal->getShortVoltageMax(&actual)); in TEST_F()
193 EXPECT_TRUE(mHwCal->getShortVoltageMax(&actual)); in TEST_F()
H A 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()
/aosp12/hardware/google/pixel/vibrator/drv2624/
H A DHardware.h125 bool getShortVoltageMax(uint32_t *value) override { in getShortVoltageMax() function
H A DVibrator.h103 virtual bool getShortVoltageMax(uint32_t *value) = 0;
H A DVibrator.cpp88 mHwCal->getShortVoltageMax(&shortVoltageMax); in Vibrator()