Home
last modified time | relevance | path

Searched refs:contoller (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/drivers/peripheral/audio/effect/test/unittest/
H A Deffect_model_test.cpp164 struct IEffectControl *contoller = NULL; variable
165 …EXPECT_EQ(HDF_ERR_INVALID_OBJECT, model_->CreateEffectController(nullptr, &info, &contoller, &cont…
166 …EXPECT_EQ(HDF_ERR_INVALID_PARAM, model_->CreateEffectController(model_, nullptr, &contoller, &cont…
167 …EXPECT_EQ(HDF_ERR_INVALID_PARAM, model_->CreateEffectController(model_, &info, &contoller, nullptr…
184 struct IEffectControl *contoller = NULL; variable
185 … ASSERT_EQ(HDF_SUCCESS, model_->CreateEffectController(model_, &info, &contoller, &contollerId_));
186 ASSERT_NE(contoller, nullptr);
206 struct IEffectControl *contoller = NULL; variable
207 int32_t ret = model_->CreateEffectController(model_, &info, &contoller, &contollerId_);
209 ASSERT_NE(contoller, nullptr);
[all …]
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/audio/
H A Dinterface_i_effect_model.md24 …ct_info.md) info, [out] [IEffectControl](interface_i_effect_control.md) contoller, [out] struct [C…
35 IEffectModel::CreateEffectController ([in] struct EffectInfo info, [out] IEffectControl contoller, …
50 | contoller | 音效控制器对象。 |
/ohos5.0/drivers/peripheral/audio/effect/model/src/
H A Deffect_model.c313 …ic int32_t CreateEffectController(const struct EffectInfo *info, struct IEffectControl **contoller, in CreateEffectController() argument
316 if (info == NULL || contoller == NULL || contollerId == NULL) { in CreateEffectController()
340 *contoller = &ctrlMgr->ctrlImpls; in CreateEffectController()
348 *contoller = NULL; in CreateEffectController()
355 struct IEffectControl **contoller, struct ControllerId *contollerId) in EffectModelCreateEffectController() argument
357 if (self == NULL || info == NULL || contoller == NULL || contollerId == NULL) { in EffectModelCreateEffectController()
383 *contoller = &ctrlMgr->ctrlImpls; in EffectModelCreateEffectController()
393 ret = CreateEffectController(info, contoller, contollerId, ctrlOps); in EffectModelCreateEffectController()
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/audio_effect_v1_0/foo/audio/effect/v1_0/
H A DEffectTypes.idl22 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.
H A DIEffectModel.idl53 * @param contoller Indicates the <b>IEffectControl</b> object.
54 * @param contollerId Indicates the contoller to the <b>IEffectControl</b> object.
61 CreateEffectController([in]struct EffectInfo info, [out] IEffectControl contoller,
68 * @param contollerId Indicates the contoller to the <b>EffectControl</b> object.
/ohos5.0/drivers/interface/audio/effect/v1_0/
H A DEffectTypes.idl22 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.
H A DIEffectModel.idl53 * @param contoller Indicates the <b>IEffectControl</b> object.
54 * @param contollerId Indicates the contoller to the <b>IEffectControl</b> object.
61 CreateEffectController([in]struct EffectInfo info, [out] IEffectControl contoller,
68 * @param contollerId Indicates the contoller to the <b>EffectControl</b> object.
/ohos5.0/drivers/peripheral/audio/effect/test/fuzztest/effectmodel_fuzzer/
H A Deffectmodel_fuzzer.cpp67 struct IEffectControl *contoller = nullptr; in EffectModelFucSwitch() local
74 model->CreateEffectController(model, &info, &contoller, &contollerId); in EffectModelFucSwitch()
/ohos5.0/drivers/peripheral/audio/test/benchmarktest/effect/
H A Daudio_effectmodel_benchmarktest.cpp150 struct IEffectControl *contoller = NULL; in BENCHMARK_F() local
153 ret = model_->CreateEffectController(model_, &info, &contoller, &contollerId_); in BENCHMARK_F()
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/audio_effect_v1_0/c_target/audio/effect/v1_0/
H A Deffect_model_proxy.c.txt189 struct IEffectControl** contoller, struct ControllerId* id)
226 *contoller = ReadIEffectControl(effectModelReply);
227 if (*contoller == NULL) {
228 HDF_LOGE("%{public}s: read contoller failed!", __func__);
H A Deffect_model_stub.c.txt210 struct IEffectControl* contoller = NULL;
244 effectModelRet = serviceImpl->CreateEffectController(serviceImpl, info, &contoller, id);
250 if (!WriteInterface(effectModelReply, IEFFECTCONTROL_INTERFACE_DESC, contoller)) {
251 HDF_LOGE("%{public}s: write contoller failed!", __func__);
H A Deffect_model_service.c.txt40 struct IEffectControl** contoller, struct ControllerId* id)
H A Dieffect_model.h.txt73 struct IEffectControl** contoller, struct ControllerId* id);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/audio_effect_v1_0/dump_ast_target/
H A Ddump.txt16 [out] ohos.hdi.audio.effect.v1_0.IEffectControl contoller,