Home
last modified time | relevance | path

Searched refs:CommandId (Results 1 – 23 of 23) sorted by relevance

/frameworks/av/media/libeffects/hapticgenerator/aidl/
DEffectHapticGenerator.cpp73 ndk::ScopedAStatus HapticGeneratorImpl::commandImpl(CommandId command) { in commandImpl()
76 case CommandId::START: in commandImpl()
79 case CommandId::STOP: in commandImpl()
82 case CommandId::RESET: in commandImpl()
DEffectHapticGenerator.h33 ndk::ScopedAStatus commandImpl(CommandId command) REQUIRES(mImplMutex) override;
/frameworks/av/media/libeffects/loudness/aidl/
DEffectLoudnessEnhancer.cpp73 ndk::ScopedAStatus LoudnessEnhancerImpl::commandImpl(CommandId command) { in commandImpl()
76 case CommandId::START: in commandImpl()
79 case CommandId::STOP: in commandImpl()
82 case CommandId::RESET: in commandImpl()
DEffectLoudnessEnhancer.h33 ndk::ScopedAStatus commandImpl(CommandId command) REQUIRES(mImplMutex) override;
/frameworks/av/media/libeffects/downmix/aidl/
DEffectDownmix.cpp74 ndk::ScopedAStatus DownmixImpl::commandImpl(CommandId command) { in commandImpl()
77 case CommandId::START: in commandImpl()
80 case CommandId::STOP: in commandImpl()
83 case CommandId::RESET: in commandImpl()
DEffectDownmix.h34 ndk::ScopedAStatus commandImpl(CommandId command) REQUIRES(mImplMutex) override;
/frameworks/av/media/libeffects/visualizer/aidl/
DVisualizer.cpp88 ndk::ScopedAStatus VisualizerImpl::commandImpl(CommandId command) { in commandImpl()
91 case CommandId::START: in commandImpl()
94 case CommandId::STOP: in commandImpl()
97 case CommandId::RESET: in commandImpl()
DVisualizer.h35 ndk::ScopedAStatus commandImpl(CommandId command) REQUIRES(mImplMutex) override;
/frameworks/av/media/libaudiohal/tests/
DEffectProxy_test.cpp37 using ::aidl::android::hardware::audio::effect::CommandId;
211 EXPECT_TRUE(proxy->command(CommandId::START).isOk()); in TEST_F()
215 EXPECT_TRUE(proxy->command(CommandId::STOP).isOk()); in TEST_F()
271 EXPECT_TRUE(proxy->command(CommandId::START).isOk()); in TEST_F()
281 EXPECT_TRUE(proxy->command(CommandId::STOP).isOk()); in TEST_F()
DEffectHalVersionCompatibility_test.cpp36 using aidl::android::hardware::audio::effect::CommandId;
155 MOCK_METHOD(ndk::ScopedAStatus, command, (CommandId id), (override));
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/aidl/
DEffectReverb.cpp364 ndk::ScopedAStatus EffectReverb::commandImpl(CommandId command) { in commandImpl()
367 case CommandId::START: in commandImpl()
370 case CommandId::STOP: in commandImpl()
373 case CommandId::RESET: in commandImpl()
DEffectReverb.h45 ndk::ScopedAStatus commandImpl(CommandId command) REQUIRES(mImplMutex) override;
/frameworks/av/media/libaudioclient/aidl/fuzzer/libaudiomockhal/include/effect-mock/
DEffectMock.h30 ndk::ScopedAStatus command(CommandId) override { return ndk::ScopedAStatus::ok(); } in command() argument
/frameworks/av/media/libeffects/preprocessing/aidl/
DEffectPreProcessing.cpp420 ndk::ScopedAStatus EffectPreProcessing::commandImpl(CommandId command) { in commandImpl()
423 case CommandId::START: in commandImpl()
426 case CommandId::STOP: in commandImpl()
429 case CommandId::RESET: in commandImpl()
DEffectPreProcessing.h46 ndk::ScopedAStatus commandImpl(CommandId command) REQUIRES(mImplMutex) override;
/frameworks/av/media/libeffects/dynamicsproc/aidl/
DDynamicsProcessing.h39 ndk::ScopedAStatus commandImpl(CommandId command) REQUIRES(mImplMutex) override;
DDynamicsProcessing.cpp247 ndk::ScopedAStatus DynamicsProcessingImpl::commandImpl(CommandId command) { in commandImpl()
250 case CommandId::START: in commandImpl()
253 case CommandId::STOP: in commandImpl()
256 case CommandId::RESET: in commandImpl()
/frameworks/av/media/libeffects/lvm/wrapper/Aidl/
DEffectBundleAidl.cpp431 ndk::ScopedAStatus EffectBundleAidl::commandImpl(CommandId command) { in commandImpl()
434 case CommandId::START: in commandImpl()
437 case CommandId::STOP: in commandImpl()
440 case CommandId::RESET: in commandImpl()
DEffectBundleAidl.h52 ndk::ScopedAStatus commandImpl(CommandId command) REQUIRES(mImplMutex) override;
/frameworks/av/media/libaudiohal/impl/
DEffectProxy.cpp31 using ::aidl::android::hardware::audio::effect::CommandId;
158 command(CommandId::STOP); in close()
220 ndk::ScopedAStatus EffectProxy::command(CommandId id) { in command()
DEffectConversionHelperAidl.cpp42 using ::aidl::android::hardware::audio::effect::CommandId;
262 return *(int *)pReplyData = statusTFromBinderStatus(mEffect->command(CommandId::RESET)); in handleReset()
274 return *(int *)pReplyData = statusTFromBinderStatus(mEffect->command(CommandId::START)); in handleEnable()
286 return *(int *)pReplyData = statusTFromBinderStatus(mEffect->command(CommandId::STOP)); in handleDisable()
DEffectHalAidl.cpp58 using ::aidl::android::hardware::audio::effect::CommandId;
337 mEffect->command(CommandId::STOP); in close()
DEffectProxy.h69 ndk::ScopedAStatus command(::aidl::android::hardware::audio::effect::CommandId id) override;