Home
last modified time | relevance | path

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

/hardware/google/pixel/vibrator/drv2624/tests/
Dmocks.h46 MOCK_METHOD1(getAutocal, bool(std::string &value)); // NOLINT
61 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.cpp219 EXPECT_CALL(*mMockCal, getAutocal(_)).Times(times); in relaxMock()
265 EXPECT_CALL(*mMockCal, getAutocal(_)) in TEST_P()
/hardware/google/pixel/vibrator/drv2624/
DVibrator.h90 virtual bool getAutocal(std::string *value) = 0;
DHardware.h104 bool getAutocal(std::string *value) override { return getPersist(AUTOCAL_CONFIG, value); } in getAutocal() function
DVibrator.cpp71 if (mHwCal->getAutocal(&autocal)) { in Vibrator()