HomeSort by relevance Sort by last modified time
    Searched defs:Vibrator (Results 1 - 8 of 8) sorted by null

  /device/google/marlin/vibrator/
Vibrator.h 19 #include <android/hardware/vibrator/1.0/IVibrator.h>
26 namespace vibrator { namespace in namespace:android::hardware
30 class Vibrator : public IVibrator {
32 Vibrator(std::ofstream&& enable, std::ofstream&& amplitude);
34 // Methods from ::android::hardware::vibrator::V1_0::IVibrator follow.
47 } // namespace vibrator
Vibrator.cpp 22 #include <hardware/vibrator.h>
24 #include "Vibrator.h"
34 namespace vibrator { namespace in namespace:android::hardware
43 Vibrator::Vibrator(std::ofstream&& enable, std::ofstream&& amplitude) :
47 // Methods from ::android::hardware::vibrator::V1_0::IVibrator follow.
48 Return<Status> Vibrator::on(uint32_t timeout_ms) {
51 ALOGE("Failed to turn vibrator on (%d): %s", errno, strerror(errno));
57 Return<Status> Vibrator::off() {
60 ALOGE("Failed to turn vibrator off (%d): %s", errno, strerror(errno))
    [all...]
  /device/google/crosshatch/vibrator/
Vibrator.h 19 #include <android/hardware/vibrator/1.2/IVibrator.h>
26 namespace vibrator { namespace in namespace:android::hardware
30 class Vibrator : public IVibrator {
32 Vibrator(std::ofstream&& activate, std::ofstream&& duration, std::ofstream&& effect,
35 // Methods from ::android::hardware::vibrator::V1_0::IVibrator follow.
36 using Status = ::android::hardware::vibrator::V1_0::Status;
42 using EffectStrength = ::android::hardware::vibrator::V1_0::EffectStrength;
62 } // namespace vibrator
Vibrator.cpp 22 #include <hardware/vibrator.h>
25 #include "Vibrator.h"
35 namespace vibrator { namespace in namespace:android::hardware
39 using Status = ::android::hardware::vibrator::V1_0::Status;
40 using EffectStrength = ::android::hardware::vibrator::V1_0::EffectStrength;
103 Vibrator::Vibrator(std::ofstream&& activate, std::ofstream&& duration, std::ofstream&& effect,
112 Return<Status> Vibrator::on(uint32_t timeoutMs, uint32_t effectIndex) {
121 // Methods from ::android::hardware::vibrator::V1_1::IVibrator follow.
122 Return<Status> Vibrator::on(uint32_t timeoutMs)
    [all...]
  /device/google/wahoo/vibrator/
Vibrator.h 19 #include <android/hardware/vibrator/1.2/IVibrator.h>
26 namespace vibrator { namespace in namespace:android::hardware
30 class Vibrator : public IVibrator {
32 Vibrator(std::ofstream&& activate, std::ofstream&& duration,
37 // Methods from ::android::hardware::vibrator::V1_0::IVibrator follow.
38 using Status = ::android::hardware::vibrator::V1_0::Status;
44 using EffectStrength = ::android::hardware::vibrator::V1_0::EffectStrength;
71 } // namespace vibrator
Vibrator.cpp 22 #include <hardware/vibrator.h>
25 #include "Vibrator.h"
35 namespace vibrator { namespace in namespace:android::hardware
64 using Status = ::android::hardware::vibrator::V1_0::Status;
65 using EffectStrength = ::android::hardware::vibrator::V1_0::EffectStrength;
67 Vibrator::Vibrator(std::ofstream&& activate, std::ofstream&& duration,
81 mClickDuration = property_get_int32("ro.vibrator.hal.click.duration", WAVEFORM_CLICK_EFFECT_MS);
82 mTickDuration = property_get_int32("ro.vibrator.hal.tick.duration", WAVEFORM_TICK_EFFECT_MS);
84 "ro.vibrator.hal.heavyclick.duration", WAVEFORM_HEAVY_CLICK_EFFECT_MS)
    [all...]
  /device/google/bonito/vibrator/
Vibrator.cpp 23 #include <hardware/vibrator.h>
25 #include "Vibrator.h"
34 namespace vibrator { namespace in namespace:android::hardware
67 using Status = ::android::hardware::vibrator::V1_0::Status;
68 using EffectStrength = ::android::hardware::vibrator::V1_0::EffectStrength;
70 Vibrator::Vibrator(HwApi &&hwapi, std::uint32_t short_lra_period, std::uint32_t long_lra_period)
72 mClickDuration = property_get_int32("ro.vibrator.hal.click.duration", WAVEFORM_CLICK_EFFECT_MS);
73 mTickDuration = property_get_int32("ro.vibrator.hal.tick.duration", WAVEFORM_TICK_EFFECT_MS);
75 property_get_int32("ro.vibrator.hal.heavyclick.duration", WAVEFORM_HEAVY_CLICK_EFFECT_MS)
    [all...]
Vibrator.h 19 #include <android/hardware/vibrator/1.2/IVibrator.h>
26 namespace vibrator { namespace in namespace:android::hardware
30 class Vibrator : public IVibrator {
48 Vibrator(HwApi &&hwapi, std::uint32_t short_lra_period, std::uint32_t long_lra_period);
50 // Methods from ::android::hardware::vibrator::V1_0::IVibrator follow.
51 using Status = ::android::hardware::vibrator::V1_0::Status;
57 using EffectStrength = ::android::hardware::vibrator::V1_0::EffectStrength;
80 } // namespace vibrator

Completed in 110 milliseconds