Home
last modified time | relevance | path

Searched refs:paramIndex (Results 1 - 15 of 15) sorted by relevance

/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codecgetparameterhdi_fuzzer/
H A Dcodecgetparameter_fuzzer.cpp23 uint32_t paramIndex; member
56 int32_t ret = g_component->GetParameter(params.paramIndex, inParamStruct, outParamStruct); in CodecGetParameter()
/drivers/hdf_core/framework/tools/hdi-gen/codegen/
H A Dcpp_service_stub_code_emitter.cpp240 for (size_t paramIndex = 0; paramIndex < method->GetParameterNumber(); paramIndex++) { in GetSourceOtherLibInclusions()
241 AutoPtr<ASTParameter> param = method->GetParameter(paramIndex); in GetSourceOtherLibInclusions()
262 for (size_t paramIndex = 0; paramIndex < method->GetParameterNumber(); paramIndex++) { in GetSourceOtherFileInclusions()
263 AutoPtr<ASTParameter> param = method->GetParameter(paramIndex); in GetSourceOtherFileInclusions()
541 for (size_t paramIndex = 0; paramIndex < metho in GetUtilMethods()
[all...]
H A Dc_client_proxy_code_emitter.cpp178 for (size_t paramIndex = 0; paramIndex < method->GetParameterNumber(); paramIndex++) { in GetHeaderOtherLibInclusions()
179 AutoPtr<ASTParameter> param = method->GetParameter(paramIndex); in GetHeaderOtherLibInclusions()
802 for (size_t paramIndex = 0; paramIndex < method->GetParameterNumber(); paramIndex++) { in GetUtilMethods()
803 AutoPtr<ASTParameter> param = method->GetParameter(paramIndex); in GetUtilMethods()
H A Dcpp_client_proxy_code_emitter.cpp424 for (size_t paramIndex = 0; paramIndex < method->GetParameterNumber(); paramIndex++) { in GetSourceOtherLibInclusions()
425 AutoPtr<ASTParameter> param = method->GetParameter(paramIndex); in GetSourceOtherLibInclusions()
443 for (size_t paramIndex = 0; paramIndex < method->GetParameterNumber(); paramIndex++) { in GetSourceOtherFileInclusions()
444 AutoPtr<ASTParameter> param = method->GetParameter(paramIndex); in GetSourceOtherFileInclusions()
859 for (size_t paramIndex = 0; paramIndex < metho in GetUtilMethods()
[all...]
H A Dc_service_stub_code_emitter.cpp735 for (size_t paramIndex = 0; paramIndex < method->GetParameterNumber(); paramIndex++) { in GetUtilMethods()
736 AutoPtr<ASTParameter> param = method->GetParameter(paramIndex); in GetUtilMethods()
/drivers/peripheral/codec/hal/src/
H A Dcodec_component_type_service.c55 uint32_t paramIndex, int8_t *paramStruct, uint32_t paramStructLen) in CodecComponentTypeGetParameter()
57 CODEC_LOGI("service impl, index [%{public}x]!", paramIndex); in CodecComponentTypeGetParameter()
64 int32_t err = OmxAdapterGetParameter(service->codecNode, paramIndex, paramStruct, paramStructLen); in CodecComponentTypeGetParameter()
66 CODEC_LOGE("index [%{public}u], ret value [%{public}x]!", paramIndex, err); in CodecComponentTypeGetParameter()
54 CodecComponentTypeGetParameter(struct CodecComponentType *self, uint32_t paramIndex, int8_t *paramStruct, uint32_t paramStructLen) CodecComponentTypeGetParameter() argument
H A Dcodec_component_type_stub.c125 uint32_t paramIndex = 0; in SerStubGetParameter() local
129 if (!HdfSbufReadUint32(data, &paramIndex)) { in SerStubGetParameter()
130 CODEC_LOGE("read paramIndex failed!"); in SerStubGetParameter()
152 ret = serviceImpl->GetParameter(serviceImpl, paramIndex, paramStruct, paramStructLen); in SerStubGetParameter()
H A Dcodec_adapter.cpp113 int32_t OmxAdapterGetParameter(struct CodecComponentNode *codecNode, OMX_INDEXTYPE paramIndex, int8_t *param, in OmxAdapterGetParameter() argument
121 return codecNode->node->GetParameter(paramIndex, param, paramLen); in OmxAdapterGetParameter()
H A Dcodec_component_type_proxy.c150 uint32_t paramIndex, int8_t *paramStruct, uint32_t paramStructLen) in CodecComponentTypeProxyGetParameter()
168 if (!HdfSbufWriteUint32(data, paramIndex)) { in CodecComponentTypeProxyGetParameter()
169 CODEC_LOGE("write paramIndex failed!"); in CodecComponentTypeProxyGetParameter()
149 CodecComponentTypeProxyGetParameter(struct CodecComponentType *self, uint32_t paramIndex, int8_t *paramStruct, uint32_t paramStructLen) CodecComponentTypeProxyGetParameter() argument
/drivers/peripheral/codec/hal/v2.0/hdi_impl/include/
H A Dcomponent_node.h44 int32_t GetParameter(OMX_INDEXTYPE paramIndex, int8_t *param, uint32_t paramLen);
46 int32_t SetParameter(OMX_INDEXTYPE paramIndex, int8_t *param, uint32_t paramLen);
/drivers/peripheral/codec/hal/idl_service/include/
H A Dcomponent_node.h45 int32_t GetParameter(OMX_INDEXTYPE paramIndex, int8_t *param);
46 int32_t SetParameter(OMX_INDEXTYPE paramIndex, const int8_t *param);
/drivers/peripheral/codec/hal/v2.0/hdi_impl/src/
H A Dcomponent_node.cpp118 int32_t ComponentNode::GetParameter(OMX_INDEXTYPE paramIndex, int8_t *param, uint32_t paramLen) in GetParameter() argument
125 return OMX_GetParameter(comp_, paramIndex, param); in GetParameter()
128 int32_t ComponentNode::SetParameter(OMX_INDEXTYPE paramIndex, int8_t *param, uint32_t paramLen) in SetParameter() argument
135 return OMX_SetParameter(comp_, paramIndex, param); in SetParameter()
/drivers/peripheral/codec/hal/include/
H A Dcodec_adapter_interface.h46 int32_t OmxAdapterGetParameter(struct CodecComponentNode *codecNode, OMX_INDEXTYPE paramIndex, int8_t *param,
/drivers/peripheral/codec/interfaces/include/
H A Dcodec_component_if.h107 * @param paramIndex Indicates the index of the structure to fill. For details, see {@link OMX_INDEXTYPE}.
117 int32_t (*GetParameter)(struct CodecComponentType *self, uint32_t paramIndex, int8_t *paramStruct,
/drivers/peripheral/codec/hal/idl_service/src/
H A Dcomponent_node.cpp178 int32_t ComponentNode::GetParameter(OMX_INDEXTYPE paramIndex, int8_t *param) in GetParameter() argument
181 auto err = OMX_GetParameter(comp_, paramIndex, param); in GetParameter()
188 int32_t ComponentNode::SetParameter(OMX_INDEXTYPE paramIndex, const int8_t *param) in SetParameter() argument
191 auto err = OMX_SetParameter(comp_, paramIndex, const_cast<int8_t *>(param)); in SetParameter()

Completed in 18 milliseconds