Searched refs:EffectReverse (Results 1 - 7 of 7) sorted by relevance
/drivers/peripheral/audio/test/benchmarktest/effect/ |
H A D | audio_effectcontrol_benchmarktest.cpp | 165 BENCHMARK_F(AudioEffectControlBenchmarkTest, EffectReverse)(benchmark::State &state)
in BENCHMARK_F() 173 ret = controller_->EffectReverse(controller_, &input, &output);
in BENCHMARK_F() 178 BENCHMARK_REGISTER_F(AudioEffectControlBenchmarkTest, EffectReverse)->
|
/drivers/peripheral/audio/interfaces/effect/v1_0/ |
H A D | ieffect_control_vdi.h | 35 int32_t (*EffectReverse)(struct IEffectControlVdi *self, const struct AudioEffectBufferVdi *input, member
|
/drivers/peripheral/audio/effect/model/src/ |
H A D | effect_control.c | 107 if (manager->ctrlOps == NULL || manager->ctrlOps->EffectReverse == NULL) {
in EffectControlEffectReverse() 113 int32_t ret = manager->ctrlOps->EffectReverse(manager->ctrlOps, inputVdi, outputVdi);
in EffectControlEffectReverse() 115 HDF_LOGE("EffectReverse failed, ret=%{public}d", ret);
in EffectControlEffectReverse()
|
H A D | effect_model.c | 147 ctrlMgr->ctrlImpls.EffectReverse = EffectControlEffectReverse;
in EffectModelCreateEffectController()
|
/drivers/peripheral/audio/effect/test/unittest/ |
H A D | effect_control_test.cpp | 332 EXPECT_EQ(HDF_ERR_INVALID_OBJECT, controller_->EffectReverse(nullptr, &input, &output));
in HWTEST_F() 333 EXPECT_EQ(HDF_ERR_INVALID_PARAM, controller_->EffectReverse(controller_, nullptr, &output));
in HWTEST_F() 334 EXPECT_EQ(HDF_ERR_INVALID_PARAM, controller_->EffectReverse(controller_, &input, nullptr));
in HWTEST_F() 348 int32_t ret = controller_->EffectReverse(controller_, &input, &output);
in HWTEST_F()
|
/drivers/peripheral/audio/effect/test/fuzztest/effectcontrol_fuzzer/ |
H A D | effectcontrol_fuzzer.cpp | 73 controller->EffectReverse(controller, reinterpret_cast<struct AudioEffectBuffer *>(data), &output); in EffectControlFucSwitch()
|
/drivers/peripheral/audio/effect/model/src/mock_effect/ |
H A D | mock_effect_lib.c | 287 hwCtrl->impls.EffectReverse = MockEffectReverse;
in MockCreateController()
|
Completed in 3 milliseconds