Home
last modified time | relevance | path

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

/device/google/coral/vibrator/tests/
Dtest-hwcal.cpp175 EXPECT_TRUE(mHwCal->getVolLevels(&actual)); in TEST_F()
187 EXPECT_TRUE(mHwCal->getVolLevels(&actual)); in TEST_F()
201 EXPECT_TRUE(mHwCal->getVolLevels(&actual)); in TEST_F()
215 EXPECT_TRUE(mHwCal->getVolLevels(&actual)); in TEST_F()
230 EXPECT_TRUE(mHwCal->getVolLevels(&actual)); in TEST_F()
262 EXPECT_TRUE(mHwCal->getVolLevels(&volActual)); in TEST_F()
294 EXPECT_TRUE(mHwCal->getVolLevels(&volActual)); in TEST_F()
Dmocks.h54 MOCK_METHOD1(getVolLevels, bool(std::array<uint32_t, 6> *value));
Dtest-vibrator.cpp137 ON_CALL(*mMockCal, getVolLevels(_)) in createMock()
194 EXPECT_CALL(*mMockCal, getVolLevels(_)).Times(times); in relaxMock()
235 volGet = EXPECT_CALL(*mMockCal, getVolLevels(_)).WillOnce(DoDefault()); in TEST_F()
/device/google/coral/vibrator/
DVibrator.h107 virtual bool getVolLevels(std::array<uint32_t, 6> *value) = 0;
DHardware.h137 bool getVolLevels(std::array<uint32_t, 6> *value) override { in getVolLevels() function
DVibrator.cpp97 mHwCal->getVolLevels(&mVolLevels); in Vibrator()