Lines Matching refs:index
198 int32_t ComponentNode::SetParameterWithBuffer(int32_t index, const std::vector<int8_t>& paramStruct,
202 if (index != HDI::Codec::V3_0::Codec_IndexParamOverlayBuffer) {
242 int32_t ComponentNode::GetConfig(OMX_INDEXTYPE index, int8_t *config)
245 auto err = OMX_GetConfig(comp_, index, config);
252 int32_t ComponentNode::SetConfig(OMX_INDEXTYPE index, const int8_t *config)
255 auto err = OMX_SetConfig(comp_, index, const_cast<int8_t *>(config));
262 int32_t ComponentNode::GetExtensionIndex(const char *parameterName, uint32_t &index)
271 index = indexType;
326 int32_t ComponentNode::ComponentRoleEnum(std::vector<uint8_t> &role, uint32_t index)
329 CHECK_AND_RETURN_RET_LOG(index < ROLE_MAX_LEN, HDF_ERR_INVALID_PARAM, "index is too large");
336 int32_t err = comType->ComponentRoleEnum(comp_, omxRole, index);