Home
last modified time | relevance | path

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

/device/google/coral/vibrator/tests/
Dmocks.h38 MOCK_METHOD1(setAspEnable, bool(bool value));
Dtest-vibrator.cpp183 EXPECT_CALL(*mMockApi, setAspEnable(_)).Times(times); in relaxMock()
377 EXPECT_CALL(*mMockApi, setAspEnable(true)).InSequence(s).WillOnce(::testing::Return(true)); in TEST_F()
383 EXPECT_CALL(*mMockApi, setAspEnable(false)).WillOnce(::testing::Return(true)); in TEST_F()
Dtest-hwapi.cpp248 &Vibrator::HwApi::setAspEnable),
/device/google/coral/vibrator/
DVibrator.h77 virtual bool setAspEnable(bool value) = 0;
DHardware.h68 bool setAspEnable(bool value) override { return set(value, mAspEnable); } in setAspEnable() function
DVibrator.cpp198 if (!mHwApi->setAspEnable(enabled)) { in setExternalControl()