Lines Matching refs:Vibrator

216 Vibrator::Vibrator(std::unique_ptr<HwApi> hwapi, std::unique_ptr<HwCal> hwcal)  in Vibrator()  function in aidl::android::hardware::vibrator::Vibrator
367 ndk::ScopedAStatus Vibrator::getCapabilities(int32_t *_aidl_return) { in getCapabilities()
387 ndk::ScopedAStatus Vibrator::off() { in off()
410 ndk::ScopedAStatus Vibrator::on(int32_t timeoutMs, in on()
427 ndk::ScopedAStatus Vibrator::perform(Effect effect, EffectStrength strength, in perform()
434 ndk::ScopedAStatus Vibrator::getSupportedEffects(std::vector<Effect> *_aidl_return) { in getSupportedEffects()
440 ndk::ScopedAStatus Vibrator::setAmplitude(float amplitude) { in setAmplitude()
454 ndk::ScopedAStatus Vibrator::setExternalControl(bool enabled) { in setExternalControl()
469 ndk::ScopedAStatus Vibrator::getCompositionDelayMax(int32_t *maxDelayMs) { in getCompositionDelayMax()
475 ndk::ScopedAStatus Vibrator::getCompositionSizeMax(int32_t *maxSize) { in getCompositionSizeMax()
481 ndk::ScopedAStatus Vibrator::getSupportedPrimitives(std::vector<CompositePrimitive> *supported) { in getSupportedPrimitives()
486 ndk::ScopedAStatus Vibrator::getPrimitiveDuration(CompositePrimitive primitive, in getPrimitiveDuration()
503 ndk::ScopedAStatus Vibrator::compose(const std::vector<CompositeEffect> &composite, in compose()
584 ndk::ScopedAStatus Vibrator::on(uint32_t timeoutMs, uint32_t effectIndex, in on()
617 mAsyncHandle = std::async(&Vibrator::waitForComplete, this, callback); in on()
622 ndk::ScopedAStatus Vibrator::setEffectAmplitude(float amplitude, float maximum) { in setEffectAmplitude()
636 ndk::ScopedAStatus Vibrator::setGlobalAmplitude(bool set) { in setGlobalAmplitude()
644 ndk::ScopedAStatus Vibrator::getSupportedAlwaysOnEffects(std::vector<Effect> *_aidl_return) { in getSupportedAlwaysOnEffects()
649 ndk::ScopedAStatus Vibrator::alwaysOnEnable(int32_t id, Effect effect, EffectStrength strength) { in alwaysOnEnable()
675 ndk::ScopedAStatus Vibrator::alwaysOnDisable(int32_t id) { in alwaysOnDisable()
688 ndk::ScopedAStatus Vibrator::getResonantFrequency(float *resonantFreqHz) { in getResonantFrequency()
699 ndk::ScopedAStatus Vibrator::getQFactor(float *qFactor) { in getQFactor()
710 ndk::ScopedAStatus Vibrator::getFrequencyResolution(float *freqResolutionHz) { in getFrequencyResolution()
712 Vibrator::getCapabilities(&capabilities); in getFrequencyResolution()
721 ndk::ScopedAStatus Vibrator::getFrequencyMinimum(float *freqMinimumHz) { in getFrequencyMinimum()
723 Vibrator::getCapabilities(&capabilities); in getFrequencyMinimum()
732 ndk::ScopedAStatus Vibrator::getBandwidthAmplitudeMap(std::vector<float> *_aidl_return) { in getBandwidthAmplitudeMap()
735 Vibrator::getCapabilities(&capabilities); in getBandwidthAmplitudeMap()
745 ndk::ScopedAStatus Vibrator::getPwlePrimitiveDurationMax(int32_t *durationMs) { in getPwlePrimitiveDurationMax()
747 Vibrator::getCapabilities(&capabilities); in getPwlePrimitiveDurationMax()
756 ndk::ScopedAStatus Vibrator::getPwleCompositionSizeMax(int32_t *maxSize) { in getPwleCompositionSizeMax()
758 Vibrator::getCapabilities(&capabilities); in getPwleCompositionSizeMax()
767 ndk::ScopedAStatus Vibrator::getSupportedBraking(std::vector<Braking> *supported) { in getSupportedBraking()
769 Vibrator::getCapabilities(&capabilities); in getSupportedBraking()
781 ndk::ScopedAStatus Vibrator::setPwle(const std::string &pwleQueue) { in setPwle()
828 ndk::ScopedAStatus Vibrator::composePwle(const std::vector<PrimitivePwle> &composite, in composePwle()
834 Vibrator::getCapabilities(&capabilities); in composePwle()
926 mAsyncHandle = std::async(&Vibrator::waitForComplete, this, callback); in composePwle()
931 bool Vibrator::isUnderExternalControl() { in isUnderExternalControl()
935 binder_status_t Vibrator::dump(int fd, const char **args, uint32_t numArgs) { in dump()
994 bool Vibrator::findHapticAlsaDevice(int *card, int *device) { in findHapticAlsaDevice()
1014 bool Vibrator::hasHapticAlsaDevice() { in hasHapticAlsaDevice()
1030 bool Vibrator::enableHapticPcmAmp(struct pcm **haptic_pcm, bool enable, int card, int device) { in enableHapticPcmAmp()
1067 ndk::ScopedAStatus Vibrator::getSimpleDetails(Effect effect, EffectStrength strength, in getSimpleDetails()
1118 ndk::ScopedAStatus Vibrator::getCompoundDetails(Effect effect, EffectStrength strength, in getCompoundDetails()
1171 ndk::ScopedAStatus Vibrator::getPrimitiveDetails(CompositePrimitive primitive, in getPrimitiveDetails()
1215 ndk::ScopedAStatus Vibrator::uploadOwtEffect(uint8_t *owtData, uint32_t numBytes, in uploadOwtEffect()
1262 ndk::ScopedAStatus Vibrator::performEffect(Effect effect, EffectStrength strength, in performEffect()
1301 ndk::ScopedAStatus Vibrator::performEffect(uint32_t effectIndex, uint32_t volLevel, in performEffect()
1318 void Vibrator::waitForComplete(std::shared_ptr<IVibratorCallback> &&callback) { in waitForComplete()
1332 uint32_t Vibrator::intensityToVolLevel(float intensity, uint32_t effectIndex) { in intensityToVolLevel()