HomeSort by relevance Sort by last modified time
    Searched refs:cComponentName (Results 1 - 25 of 65) sorted by null

1 2 3

  /hardware/qcom/media/mm-core/omxcore/src/common/
qc_omx_core.h 68 OMX_STRING cComponentName; //OMX component name
  /hardware/qcom/media/mm-core/src/common/
qc_omx_core.h 68 OMX_STRING cComponentName; //OMX component name
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_omx_config_parser.h 37 OMX_STRING cComponentName; //OMX component name
  /hardware/ti/omap4-aah/domx/domx/
omx_rpc.h 119 * @param cComponentName : Pointer to the Components Name that is requires the RCM client to be initialized
125 RPC_OMX_ERRORTYPE RPC_InstanceInit(OMX_STRING cComponentName,
135 * @param cComponentName : Pointer to the Components Name that is active user of the RCM client to be deinitialized
  /hardware/ti/omap4-aah/domx/omx_core/src/
OMX_Core_Wrapper.c 104 cComponentName, OMX_IN OMX_U32 nNameLength, OMX_IN OMX_U32 nIndex)
109 return OMX_ComponentNameEnum(cComponentName, nNameLength, nIndex);
113 OMX_IN OMX_STRING cComponentName,
119 return OMX_GetHandle(pHandle, cComponentName, pAppData, pCallBacks);
OMX_Core.c 174 * @param[in] cComponentName Name of the component to load
189 OMX_STRING cComponentName, OMX_PTR pAppData,
210 CORE_require(NULL != cComponentName, OMX_ErrorBadParameter, NULL);
220 CORE_require(strlen(cComponentName) < MAXNAMESIZE,
244 strcat(buf, cComponentName); /* checked already, so strcpy and strcat are */
265 if(mode == enable && strstr(cComponentName,"secure") == NULL)
535 * @param[out] cComponentName The name of the component at nIndex
545 cComponentName, OMX_IN OMX_U32 nNameLength, OMX_IN OMX_U32 nIndex)
549 CORE_require(cComponentName != NULL, OMX_ErrorBadParameter, NULL);
558 strcpy(cComponentName, componentTable[nIndex].name)
    [all...]
  /hardware/ti/omap4xxx/domx/domx/
omx_rpc.h 119 * @param cComponentName : Pointer to the Components Name that is requires the RCM client to be initialized
125 RPC_OMX_ERRORTYPE RPC_InstanceInit(OMX_STRING cComponentName,
135 * @param cComponentName : Pointer to the Components Name that is active user of the RCM client to be deinitialized
  /hardware/ti/omap4xxx/domx/omx_core/src/
OMX_Core_Wrapper.c 108 cComponentName, OMX_IN OMX_U32 nNameLength, OMX_IN OMX_U32 nIndex)
113 return OMX_ComponentNameEnum(cComponentName, nNameLength, nIndex);
117 OMX_IN OMX_STRING cComponentName,
123 return OMX_GetHandle(pHandle, cComponentName, pAppData, pCallBacks);
OMX_Core.c 167 * @param[in] cComponentName Name of the component to load
182 OMX_STRING cComponentName, OMX_PTR pAppData,
203 CORE_require(NULL != cComponentName, OMX_ErrorBadParameter, NULL);
213 CORE_require(strlen(cComponentName) < MAXNAMESIZE,
237 strcat(buf, cComponentName); /* checked already, so strcpy and strcat are */
255 if(mode == enable && strstr(cComponentName,"secure") == NULL)
522 * @param[out] cComponentName The name of the component at nIndex
532 cComponentName, OMX_IN OMX_U32 nNameLength, OMX_IN OMX_U32 nIndex)
536 CORE_require(cComponentName != NULL, OMX_ErrorBadParameter, NULL);
545 strcpy(cComponentName, componentTable[nIndex].name)
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/
OMX_Core.c 153 * @param[in] cComponentName Name of the component to load
167 OMX_ERRORTYPE TIOMX_GetHandle( OMX_HANDLETYPE* pHandle, OMX_STRING cComponentName,
183 if ((NULL == cComponentName) || (NULL == pHandle) || (NULL == pCallBacks)) {
192 if(strlen(cComponentName) >= MAXNAMESIZE) {
210 if (strcmp(componentTable[refIndex].name, cComponentName) == 0) {
212 cComponentName, componentTable[refIndex].refCount);
217 ALOGE("Max instances of component %s already created.\n", cComponentName);
238 strcat(buf, cComponentName);
491 * @param[out] cComponentName The name of the component at nIndex
501 OMX_OUT OMX_STRING cComponentName,
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/core/
Exynos_OMX_Core.h 45 OMX_OUT OMX_STRING cComponentName,
50 OMX_IN OMX_STRING cComponentName,
Exynos_OMX_Core.c 115 OMX_OUT OMX_STRING cComponentName,
128 snprintf(cComponentName, nNameLength, "%s", gComponentList[nIndex].component.componentName);
139 OMX_IN OMX_STRING cComponentName,
155 if ((pHandle == NULL) || (cComponentName == NULL) || (pCallBacks == NULL)) {
159 Exynos_OSAL_Log(EXYNOS_LOG_TRACE, "ComponentName : %s", cComponentName);
162 if (Exynos_OSAL_Strcmp(cComponentName, gComponentList[i].component.componentName) == 0) {
  /hardware/ti/omap4-aah/domx/omx_core/inc/
OMX_Core_Wrapper.h 54 OMX_OUT OMX_STRING cComponentName,
59 OMX_IN OMX_STRING cComponentName,
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_Core_Wrapper.h 54 OMX_OUT OMX_STRING cComponentName,
59 OMX_IN OMX_STRING cComponentName,
  /hardware/intel/common/utils/ISV/omx/
isv_omxcore.cpp 135 OMX_OUT OMX_STRING cComponentName,
154 ALOGD_IF(ISV_CORE_DEBUG, "%s: found %luth component %s", __func__, nIndex, cComponentName);
155 return ((*(g_cores[i].mComponentNameEnum))(cComponentName, nNameLength, relativeIndex));
165 OMX_IN OMX_STRING cComponentName,
172 ALOGD_IF(ISV_CORE_DEBUG, "%s: enter, try to get %s", __func__, cComponentName);
198 const_cast<char *>(cComponentName),
205 ALOGD_IF(ISV_CORE_DEBUG, "%s: found component %s, pHandle %p", __func__, cComponentName, *pHandle);
214 ALOGD_IF(ISV_CORE_DEBUG, "%s(): exit failure, %s not found", __func__, cComponentName);
  /hardware/intel/common/wrs_omxil_core/core/src/
wrs_omxcore.cpp 167 OMX_OUT OMX_STRING cComponentName,
187 strncpy(cComponentName, cname, nNameLength);
195 OMX_IN OMX_STRING cComponentName,
202 LOGV("%s(): enter, try to get %s", __FUNCTION__, cComponentName);
212 if (!strcmp(cComponentName, cname)) {
241 LOGI("get handle of component %s successfully", cComponentName);
258 LOGE("%s(): exit failure, %s not found", __FUNCTION__, cComponentName);
  /hardware/ti/omap4-aah/domx/domx/omx_rpc/src/
omx_rpc_utils.c 205 * @param cComponentName - Name of the component.
212 RPC_OMX_ERRORTYPE RPC_UTIL_GetTargetCore(OMX_STRING cComponentName,
221 sscanf(cComponentName, "%*[^'.'].%*[^'.'].%[^'.'].%*s",
  /hardware/ti/omap4xxx/domx/domx/omx_rpc/src/
omx_rpc_utils.c 205 * @param cComponentName - Name of the component.
212 RPC_OMX_ERRORTYPE RPC_UTIL_GetTargetCore(OMX_STRING cComponentName,
221 sscanf(cComponentName, "%*[^'.'].%*[^'.'].%[^'.'].%*s",
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_omx_config_parser.cpp 153 Status = ti_video_config_parser((tiVideoConfigParserInputs *)&aInputs, (tiVideoConfigParserOutputs *)aOutputParameters, pInputs->cComponentName);
  /hardware/ti/omap4xxx/domx/domx/omx_rpc/inc/
omx_rpc_utils.h 163 RPC_OMX_ERRORTYPE RPC_UTIL_GetTargetCore(OMX_STRING cComponentName,
omx_rpc_stub.h 66 OMX_STRING cComponentName, OMX_PTR pAppData,
  /hardware/ti/omap4-aah/domx/domx/omx_rpc/inc/
omx_rpc_stub.h 66 OMX_STRING cComponentName, OMX_PTR pAppData,
omx_rpc_utils.h 164 RPC_OMX_ERRORTYPE RPC_UTIL_GetTargetCore(OMX_STRING cComponentName,
  /frameworks/native/include/media/openmax/
OMX_Core.h     [all...]
  /hardware/qcom/media/mm-core/inc/
OMX_Core.h     [all...]

Completed in 199 milliseconds

1 2 3