Searched refs:contoller (Results 1 – 7 of 7) sorted by relevance
/drivers/peripheral/audio/effect/test/unittest/ |
D | effect_model_test.cpp | 162 struct IEffectControl *contoller = NULL; variable 163 …EXPECT_EQ(HDF_ERR_INVALID_OBJECT, model_->CreateEffectController(nullptr, &info, &contoller, &cont… 164 …EXPECT_EQ(HDF_ERR_INVALID_PARAM, model_->CreateEffectController(model_, nullptr, &contoller, &cont… 165 …EXPECT_EQ(HDF_ERR_INVALID_PARAM, model_->CreateEffectController(model_, &info, &contoller, nullptr… 182 struct IEffectControl *contoller = NULL; variable 183 … ASSERT_EQ(HDF_SUCCESS, model_->CreateEffectController(model_, &info, &contoller, &contollerId_)); 184 ASSERT_NE(contoller, nullptr); 204 struct IEffectControl *contoller = NULL; variable 205 int32_t ret = model_->CreateEffectController(model_, &info, &contoller, &contollerId_); 207 ASSERT_NE(contoller, nullptr); [all …]
|
/drivers/interface/audio/effect/v1_0/ |
D | EffectTypes.idl | 22 String libName; /**< assign the effect library name which is used to create contoller */ 28 * @brief Defines effect contoller info including which library its belongs to and it's effectId. 31 String libName; /**< assign the effect library name which is used to create contoller */ 66 * @brief Defines effect contoller command index.
|
D | IEffectModel.idl | 49 * @param contoller Indicates the <b>IEffectControl</b> object. 50 * @param contollerId Indicates the contoller to the <b>IEffectControl</b> object. 57 CreateEffectController([in]struct EffectInfo info, [out] IEffectControl contoller, 63 * @param contollerId Indicates the contoller to the <b>EffectControl</b> object.
|
/drivers/peripheral/audio/effect/test/fuzztest/effectmodel_fuzzer/ |
D | effectmodel_fuzzer.cpp | 67 struct IEffectControl *contoller = nullptr; in EffectModelFucSwitch() local 74 model->CreateEffectController(model, &info, &contoller, &contollerId); in EffectModelFucSwitch()
|
/drivers/peripheral/audio/interfaces/effect/v1_0/ |
D | ieffect_model_vdi.h | 35 struct IEffectControlVdi **contoller, struct ControllerIdVdi *id);
|
/drivers/peripheral/audio/test/benchmarktest/effect/ |
D | audio_effectmodel_benchmarktest.cpp | 150 struct IEffectControl *contoller = NULL; in BENCHMARK_F() local 153 ret = model_->CreateEffectController(model_, &info, &contoller, &contollerId_); in BENCHMARK_F()
|
/drivers/peripheral/audio/effect/model/src/ |
D | effect_model.c | 110 struct IEffectControl **contoller, struct ControllerId *contollerId) in EffectModelCreateEffectController() argument 112 if (self == NULL || info == NULL || contoller == NULL || contollerId == NULL) { in EffectModelCreateEffectController() 151 *contoller = &ctrlMgr->ctrlImpls; in EffectModelCreateEffectController()
|