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

  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/core/
Exynos_OMX_Component_Register.h 54 OMX_HANDLETYPE libHandle;
Exynos_OMX_Component_Register.c 182 OMX_HANDLETYPE libHandle;
189 libHandle = Exynos_OSAL_dlopen((OMX_STRING)exynos_component->libName, RTLD_NOW);
190 if (!libHandle) {
196 Exynos_OMX_ComponentInit = Exynos_OSAL_dlsym(libHandle, "Exynos_OMX_ComponentInit");
198 Exynos_OSAL_dlclose(libHandle);
209 Exynos_OSAL_dlclose(libHandle);
218 Exynos_OSAL_dlclose(libHandle);
223 exynos_component->libHandle = libHandle;
253 if (exynos_component->libHandle != NULL)
    [all...]
  /frameworks/av/media/libstagefright/omx/
SoftOMXPlugin.cpp 82 void *libHandle = dlopen(libName.c_str(), RTLD_NOW);
84 if (libHandle == NULL) {
96 libHandle,
101 dlclose(libHandle);
102 libHandle = NULL;
111 dlclose(libHandle);
112 libHandle = NULL;
119 dlclose(libHandle);
120 libHandle = NULL;
126 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 148 milliseconds