/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codecgetextensionIndexhdi_fuzzer/ |
H A D | codecgetextensionIndex_fuzzer.cpp | 31 std::string paramName("OMX.Topaz.index.param.extended_test"); in CodecGetExtensionIndex() 39 int32_t ret = g_component->GetExtensionIndex(paramName, indexType); in CodecGetExtensionIndex()
|
/drivers/peripheral/codec/hal/src/ |
H A D | codec_component_type_stub.c | 340 char *paramName = NULL; in SerStubGetExtensionIndex() local 348 paramName = strdup(paramNameCp); in SerStubGetExtensionIndex() 350 ret = serviceImpl->GetExtensionIndex(serviceImpl, paramName, &indexType); in SerStubGetExtensionIndex() 351 if (paramName != NULL) { in SerStubGetExtensionIndex() 352 OsalMemFree(paramName); in SerStubGetExtensionIndex() 353 paramName = NULL; in SerStubGetExtensionIndex()
|
H A D | codec_component_type_service.c | 124 const char *paramName, uint32_t *indexType) in CodecComponentTypeGetExtensionIndex() 132 return OmxAdapterGetExtensionIndex(service->codecNode, paramName, (enum OMX_INDEXTYPE *)indexType); in CodecComponentTypeGetExtensionIndex() 123 CodecComponentTypeGetExtensionIndex(struct CodecComponentType *self, const char *paramName, uint32_t *indexType) CodecComponentTypeGetExtensionIndex() argument
|
H A D | codec_component_type_proxy.c | 364 const char *paramName, uint32_t *indexType) in CodecComponentTypeProxyGetExtensionIndex() 382 if (!HdfSbufWriteString(data, paramName)) { in CodecComponentTypeProxyGetExtensionIndex() 383 CODEC_LOGE("write paramName failed!"); in CodecComponentTypeProxyGetExtensionIndex() 363 CodecComponentTypeProxyGetExtensionIndex(struct CodecComponentType *self, const char *paramName, uint32_t *indexType) CodecComponentTypeProxyGetExtensionIndex() argument
|
/drivers/peripheral/codec/hal/idl_service/include/ |
H A D | codec_component_service.h | 40 int32_t GetExtensionIndex(const std::string ¶mName, uint32_t &indexType) override;
|
/drivers/peripheral/codec/interfaces/include/ |
H A D | codec_component_if.h | 182 * @param paramName Indicates the pointer to the string to be converted. 183 * @param indexType Indicates the pointer to the configuration index converted from the given <b>paramName</b>. 191 int32_t (*GetExtensionIndex)(struct CodecComponentType *self, const char *paramName, uint32_t *indexType);
|
/drivers/peripheral/codec/hal/idl_service/src/ |
H A D | codec_component_service.cpp | 193 int32_t CodecComponentService::GetExtensionIndex(const std::string ¶mName, uint32_t &indexType) in GetExtensionIndex() argument 196 CODEC_LOGI("paramName [%{public}s]", paramName.c_str()); in GetExtensionIndex() 197 return node_->GetExtensionIndex(paramName.c_str(), indexType); in GetExtensionIndex()
|
/drivers/hdf_core/framework/tools/hdi-gen/parser/ |
H A D | parser.cpp | 703 std::string paramName = "";
in ParseParam() local 709 paramName = token.value;
in ParseParam() 717 paramName.c_str()));
in ParseParam() 720 paramName.c_str()));
in ParseParam() 727 return new ASTParameter(paramName, paramAttr, paramType);
in ParseParam()
|
/drivers/hdf_core/framework/tools/hdi-gen/codegen/ |
H A D | c_custom_types_code_emitter.cpp | 423 std::string paramName = StringHelper::Format("&%s", varName.c_str());
in EmitMemberUnmarshalling() local 424 type->EmitCUnMarshalling(paramName, errorsLabelName_, sb, prefix, freeObjStatements_);
in EmitMemberUnmarshalling()
|