Home
last modified time | relevance | path

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

/device/google/sunfish/vibrator/drv2624/tests/
Dmocks.h30 MOCK_METHOD1(setRtpInput, bool(int8_t value));
Dtest-vibrator.cpp210 EXPECT_CALL(*mMockApi, setRtpInput(_)).Times(times); in relaxMock()
357 EXPECT_CALL(*mMockApi, setRtpInput(amplitudeToRtpInput(amplitude))).WillOnce(Return(true)); in TEST_P()
Dtest-hwapi.cpp289 &Vibrator::HwApi::setRtpInput),
/device/google/sunfish/vibrator/drv2624/
DVibrator.h53 virtual bool setRtpInput(int8_t value) = 0;
DHardware.h49 bool setRtpInput(int8_t value) override { return set(value, &mRtpInput); } in setRtpInput() function
DVibrator.cpp354 if (!mHwApi->setRtpInput(rtp_input)) { in setAmplitude()