Home
last modified time | relevance | path

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

/device/google/coral/vibrator/tests/
Dmocks.h39 MOCK_METHOD1(setGpioFallIndex, bool(uint32_t value));
Dtest-vibrator.cpp184 EXPECT_CALL(*mMockApi, setGpioFallIndex(_)).Times(times); in relaxMock()
243 EXPECT_CALL(*mMockApi, setGpioFallIndex(GPIO_FALL_INDEX)).WillOnce(::testing::Return(true)); in TEST_F()
Dtest-hwapi.cpp283 SetUint32Test::MakeParam("GPIO_FALL_INDEX", &Vibrator::HwApi::setGpioFallIndex),
/device/google/coral/vibrator/
DVibrator.h79 virtual bool setGpioFallIndex(uint32_t value) = 0;
DHardware.h69 bool setGpioFallIndex(uint32_t value) override { return set(value, mGpioFallIndex); } in setGpioFallIndex() function
DVibrator.cpp109 mHwApi->setGpioFallIndex(WAVEFORM_SIMPLE_EFFECT_INDEX); in Vibrator()