Home
last modified time | relevance | path

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

/hardware/google/pixel/vibrator/drv2624/tests/
Dmocks.h47 MOCK_METHOD1(getAutocal, bool(std::string &value)); // NOLINT
62 bool getAutocal(std::string *value) { return getAutocal(*value); } in getAutocal() function
Dtest-hwcal.cpp321 EXPECT_TRUE(mHwCal->getAutocal(&actual)); in TEST_F()
330 EXPECT_FALSE(mHwCal->getAutocal(&actual)); in TEST_F()
367 EXPECT_TRUE(mHwCal->getAutocal(&autocalActual)); in TEST_F()
385 EXPECT_TRUE(mHwCal->getAutocal(&autocalActual)); in TEST_F()
Dtest-vibrator.cpp221 EXPECT_CALL(*mMockCal, getAutocal(_)).Times(times); in relaxMock()
267 EXPECT_CALL(*mMockCal, getAutocal(_)) in TEST_P()
/hardware/google/pixel/vibrator/drv2624/
DHardware.h107 bool getAutocal(std::string *value) override { return getPersist(AUTOCAL_CONFIG, value); } in getAutocal() function
DVibrator.h93 virtual bool getAutocal(std::string *value) = 0;
DVibrator.cpp75 if (mHwCal->getAutocal(&autocal)) { in Vibrator()