Home
last modified time | relevance | path

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

/device/google/coral/vibrator/tests/
Dmocks.h36 MOCK_METHOD0(hasAspEnable, bool());
Dtest-vibrator.cpp181 EXPECT_CALL(*mMockApi, hasAspEnable()).Times(times); in relaxMock()
360 EXPECT_CALL(*mMockApi, hasAspEnable()).WillOnce(::testing::Return(true)); in TEST_F()
366 EXPECT_CALL(*mMockApi, hasAspEnable()).WillOnce(::testing::Return(false)); in TEST_F()
Dtest-hwapi.cpp136 HasTest::MakeParam("ASP_ENABLE_PATH", &Vibrator::HwApi::hasAspEnable),
/device/google/coral/vibrator/
DVibrator.h73 virtual bool hasAspEnable() = 0;
DHardware.h66 bool hasAspEnable() override { return has(mAspEnable); } in hasAspEnable() function
DVibrator.cpp191 return (mHwApi->hasAspEnable() ? true : false); in supportsExternalControl()