HomeSort by relevance Sort by last modified time
    Searched defs:libHandle (Results 1 - 4 of 4) sorted by null

  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_core/
SEC_OMX_Component_Register.h 54 OMX_HANDLETYPE libHandle;
SEC_OMX_Component_Register.c 189 OMX_HANDLETYPE libHandle;
196 libHandle = SEC_OSAL_dlopen(sec_component->libName, RTLD_NOW);
197 if (!libHandle) {
203 SEC_OMX_ComponentInit = SEC_OSAL_dlsym(libHandle, "SEC_OMX_ComponentInit");
205 SEC_OSAL_dlclose(libHandle);
216 SEC_OSAL_dlclose(libHandle);
223 SEC_OSAL_dlclose(libHandle);
230 sec_component->libHandle = libHandle;
260 if (sec_component->libHandle != NULL)
    [all...]
  /frameworks/base/media/libstagefright/omx/
SoftOMXPlugin.cpp 72 void *libHandle = dlopen(libName.c_str(), RTLD_NOW);
74 if (libHandle == NULL) {
86 libHandle,
91 dlclose(libHandle);
92 libHandle = NULL;
101 dlclose(libHandle);
102 libHandle = NULL;
109 dlclose(libHandle);
110 libHandle = NULL;
116 codec->setLibHandle(libHandle);
    [all...]
SoftOMXComponent.cpp 71 void SoftOMXComponent::setLibHandle(void *libHandle) {
72 CHECK(libHandle != NULL);
73 mLibHandle = libHandle;
76 void *SoftOMXComponent::libHandle() const {

Completed in 88 milliseconds