Home
last modified time | relevance | path

Searched refs:mCores (Results 1 – 2 of 2) sorted by relevance

/hardware/intel/common/libstagefrighthw/
DWrsOMXPlugin.cpp98 mCores.push_back(core); in AddCore()
108 for (OMX_U32 i = 0; i < mCores.size(); i++) { in ~WrsOMXPlugin()
109 if (mCores[i] != NULL && mCores[i]->mLibHandle != NULL) { in ~WrsOMXPlugin()
110 (*(mCores[i]->mDeinit))(); in ~WrsOMXPlugin()
112 dlclose(mCores[i]->mLibHandle); in ~WrsOMXPlugin()
113 free(mCores[i]); in ~WrsOMXPlugin()
123 for (OMX_U32 i = 0; i < mCores.size(); i++) { in makeComponentInstance()
124 if (mCores[i] != NULL) { in makeComponentInstance()
125 if (mCores[i]->mLibHandle == NULL) { in makeComponentInstance()
129 OMX_ERRORTYPE omx_res = (*(mCores[i]->mGetHandle))( in makeComponentInstance()
[all …]
DWrsOMXPlugin.h99 Vector<WrsOMXCore*> mCores; member