Home
last modified time | relevance | path

Searched refs:HwCal (Results 1 – 7 of 7) sorted by relevance

/device/google/sunfish/vibrator/drv2624/
Dservice.cpp33 using android::hardware::vibrator::V1_3::implementation::HwCal;
43 sp<Vibrator> vibrator = new Vibrator(std::move(hwapi), std::make_unique<HwCal>()); in registerVibratorService()
DVibrator.h91 class HwCal {
93 virtual ~HwCal() = default;
155 Vibrator(std::unique_ptr<HwApi> hwapi, std::unique_ptr<HwCal> hwcal);
187 std::unique_ptr<HwCal> mHwCal;
DHardware.h96 class HwCal : public Vibrator::HwCal, private HwCalBase {
114 HwCal() {} in HwCal() function
DVibrator.cpp181 Vibrator::Vibrator(std::unique_ptr<HwApi> hwapi, std::unique_ptr<HwCal> hwcal) in Vibrator()
/device/google/sunfish/vibrator/drv2624/tests/
Dmocks.h44 class MockCal : public ::android::hardware::vibrator::V1_3::implementation::Vibrator::HwCal {
Dtest-hwcal.cpp63 void createHwCal() { mHwCal = std::make_unique<HwCal>(); } in createHwCal()
77 std::unique_ptr<Vibrator::HwCal> mHwCal;
/device/google/sunfish/vibrator/drv2624/bench/
Dbenchmark.cpp74 mVibrator = new Vibrator(HwApi::Create(), std::make_unique<HwCal>()); in SetUp()