Home
last modified time | relevance | path

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

/hardware/google/pixel/vibrator/drv2624/tests/
Dmocks.h29 MOCK_METHOD0(hasRtpInput, bool());
Dtest-vibrator.cpp208 EXPECT_CALL(*mMockApi, hasRtpInput()).Times(times); in relaxMock()
341 EXPECT_CALL(*mMockApi, hasRtpInput()).WillOnce(Return(true)); in TEST_P()
349 EXPECT_CALL(*mMockApi, hasRtpInput()).WillOnce(Return(false)); in TEST_P()
365 EXPECT_CALL(*mMockApi, hasRtpInput()).WillOnce(Return(false)); in TEST_P()
Dtest-hwapi.cpp213 &Vibrator::HwApi::hasRtpInput),
/hardware/google/pixel/vibrator/drv2624/
DHardware.h43 bool hasRtpInput() override { return has(mRtpInput); } in hasRtpInput() function
DVibrator.h47 virtual bool hasRtpInput() = 0;
DVibrator.cpp117 if (mHwApi->hasRtpInput()) { in getCapabilities()