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

  /external/deqp/framework/delibs/deutil/
deDynamicLibrary.c 34 void* libHandle;
43 library->libHandle = dlopen(fileName, RTLD_LAZY);
44 if (!library->libHandle)
55 if (library && library->libHandle)
56 dlclose(library->libHandle);
69 DE_ASSERT(library && library->libHandle && symbolName);
70 ptr.objPtr = dlsym(library->libHandle, symbolName);
  /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 85 void *libHandle = dlopen(libName.c_str(), RTLD_NOW);
87 if (libHandle == NULL) {
99 libHandle,
104 dlclose(libHandle);
105 libHandle = NULL;
114 dlclose(libHandle);
115 libHandle = NULL;
122 dlclose(libHandle);
123 libHandle = NULL;
129 codec->setLibHandle(libHandle);
    [all...]
SoftOMXComponent.cpp 71 void SoftOMXComponent::setLibHandle(void *libHandle) {
72 CHECK(libHandle != NULL);
73 mLibHandle = libHandle;
76 void *SoftOMXComponent::libHandle() const {
  /hardware/intel/common/libstagefrighthw/
WrsOMXPlugin.cpp 60 void* libHandle = dlopen(coreName, RTLD_NOW);
62 if (libHandle != NULL) {
66 dlclose(libHandle);
70 core->mLibHandle = libHandle;
71 core->mInit = (WrsOMXCore::InitFunc)dlsym(libHandle, "OMX_Init");
72 core->mDeinit = (WrsOMXCore::DeinitFunc)dlsym(libHandle, "OMX_Deinit");
75 (WrsOMXCore::ComponentNameEnumFunc)dlsym(libHandle, "OMX_ComponentNameEnum");
77 core->mGetHandle = (WrsOMXCore::GetHandleFunc)dlsym(libHandle, "OMX_GetHandle");
78 core->mFreeHandle = (WrsOMXCore::FreeHandleFunc)dlsym(libHandle, "OMX_FreeHandle");
82 libHandle, "OMX_GetRolesOfComponent")
    [all...]
  /hardware/intel/common/utils/ISV/omx/
isv_omxcore.cpp 62 void* libHandle = NULL;
64 libHandle = dlopen(WRS_CORE_NAME, RTLD_LAZY);
67 libHandle = dlopen(MSDK_CORE_NAME, RTLD_LAZY);
69 if (libHandle != NULL) {
70 g_cores[i].mLibHandle = libHandle;
71 g_cores[i].mInit = (ISVOMXCore::InitFunc)dlsym(libHandle, "OMX_Init");
72 g_cores[i].mDeinit = (ISVOMXCore::DeinitFunc)dlsym(libHandle, "OMX_Deinit");
75 (ISVOMXCore::ComponentNameEnumFunc)dlsym(libHandle, "OMX_ComponentNameEnum");
77 g_cores[i].mGetHandle = (ISVOMXCore::GetHandleFunc)dlsym(libHandle, "OMX_GetHandle");
78 g_cores[i].mFreeHandle = (ISVOMXCore::FreeHandleFunc)dlsym(libHandle, "OMX_FreeHandle")
    [all...]

Completed in 84 milliseconds