Home
last modified time | relevance | path

Searched refs:setQ (Results 1 – 12 of 12) sorted by relevance

/hardware/google/pixel/vibrator/cs40l25/tests/
Dmocks.h29 MOCK_METHOD1(setQ, bool(uint32_t value));
Dtest-hwapi.cpp309 SetUint32Test::MakeParam("device/q_stored", &Vibrator::HwApi::setQ),
Dtest-vibrator.cpp245 EXPECT_CALL(*mMockApi, setQ(_)).Times(times); in relaxMock()
319 EXPECT_CALL(*mMockApi, setQ(qVal)).InSequence(qSeq).WillOnce(Return(true)); in TEST_F()
/hardware/google/pixel/vibrator/cs40l26/tests/
Dmocks.h29 MOCK_METHOD1(setQ, bool(std::string value));
Dtest-hwapi.cpp281 SetStringTest::MakeParam("calibration/q_stored", &Vibrator::HwApi::setQ),
Dtest-vibrator.cpp291 EXPECT_CALL(*mMockApi, setQ(_)).Times(times); in relaxMock()
371 EXPECT_CALL(*mMockApi, setQ(qVal)).InSequence(qSeq).WillOnce(Return(true)); in TEST_F()
/hardware/google/pixel/vibrator/cs40l25/
DHardware.h57 bool setQ(uint32_t value) override { return set(value, &mQ); } in setQ() function
DVibrator.h46 virtual bool setQ(uint32_t value) = 0;
DVibrator.cpp242 mHwApi->setQ(caldata);
/hardware/google/pixel/vibrator/cs40l26/
DVibrator.h57 virtual bool setQ(std::string value) = 0;
DHardware.h88 bool setQ(std::string value) override { return set(value, &mQ); } in setQ() function
DVibrator.cpp474 mHwApi->setQ(caldata);