Home
last modified time | relevance | path

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

/hardware/google/pixel/vibrator/cs40l26/tests/
Dmocks.h33 MOCK_METHOD1(getOwtFreeSpace, bool(uint32_t *value));
Dtest-vibrator.cpp236 ON_CALL(*mMockApi, getOwtFreeSpace(_)) in createMock()
293 EXPECT_CALL(*mMockApi, getOwtFreeSpace(_)).Times(times); in relaxMock()
554 eSetup += EXPECT_CALL(*mMockApi, getOwtFreeSpace(_)).WillOnce(DoDefault()); in TEST_P()
673 eSetup += EXPECT_CALL(*mMockApi, getOwtFreeSpace(_)).WillOnce(DoDefault()); in TEST_P()
Dtest-hwapi.cpp182 &Vibrator::HwApi::getOwtFreeSpace),
/hardware/google/pixel/vibrator/cs40l26/
DVibrator.h66 virtual bool getOwtFreeSpace(uint32_t *value) = 0;
DHardware.h94 bool getOwtFreeSpace(uint32_t *value) override { return get(value, &mOwtFreeSpace); } in getOwtFreeSpace() function
DVibrator.cpp860 mHwApi->getOwtFreeSpace(&freeBytes); in on()