/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codecgetparameterhdi_fuzzer/ |
H A D | codecgetparameter_fuzzer.cpp | 23 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 D | cpp_service_stub_code_emitter.cpp | 240 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 D | c_client_proxy_code_emitter.cpp | 178 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 D | cpp_client_proxy_code_emitter.cpp | 424 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 D | c_service_stub_code_emitter.cpp | 735 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 D | codec_component_type_service.c | 55 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 D | codec_component_type_stub.c | 125 uint32_t paramIndex = 0; in SerStubGetParameter() local 129 if (!HdfSbufReadUint32(data, ¶mIndex)) { in SerStubGetParameter() 130 CODEC_LOGE("read paramIndex failed!"); in SerStubGetParameter() 152 ret = serviceImpl->GetParameter(serviceImpl, paramIndex, paramStruct, paramStructLen); in SerStubGetParameter()
|
H A D | codec_adapter.cpp | 113 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 D | codec_component_type_proxy.c | 150 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 D | component_node.h | 44 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 D | component_node.h | 45 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 D | component_node.cpp | 118 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 D | codec_adapter_interface.h | 46 int32_t OmxAdapterGetParameter(struct CodecComponentNode *codecNode, OMX_INDEXTYPE paramIndex, int8_t *param,
|
/drivers/peripheral/codec/interfaces/include/ |
H A D | codec_component_if.h | 107 * @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 D | component_node.cpp | 178 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()
|