OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:libHandle
(Results
1 - 5
of
5
) 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);
/frameworks/av/media/libstagefright/omx/
SoftOMXPlugin.cpp
86
void *
libHandle
= dlopen(libName.c_str(), RTLD_NOW);
88
if (
libHandle
== NULL) {
100
libHandle
,
105
dlclose(
libHandle
);
106
libHandle
= NULL;
115
dlclose(
libHandle
);
116
libHandle
= NULL;
123
dlclose(
libHandle
);
124
libHandle
= NULL;
130
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
68
void*
libHandle
= NULL;
70
libHandle
= dlopen(WRS_CORE_NAME, RTLD_LAZY);
73
libHandle
= dlopen(MSDK_CORE_NAME, RTLD_LAZY);
75
if (
libHandle
!= NULL) {
76
g_cores[i].mLibHandle =
libHandle
;
77
g_cores[i].mInit = (ISVOMXCore::InitFunc)dlsym(
libHandle
, "OMX_Init");
78
g_cores[i].mDeinit = (ISVOMXCore::DeinitFunc)dlsym(
libHandle
, "OMX_Deinit");
81
(ISVOMXCore::ComponentNameEnumFunc)dlsym(
libHandle
, "OMX_ComponentNameEnum");
83
g_cores[i].mGetHandle = (ISVOMXCore::GetHandleFunc)dlsym(
libHandle
, "OMX_GetHandle");
84
g_cores[i].mFreeHandle = (ISVOMXCore::FreeHandleFunc)dlsym(
libHandle
, "OMX_FreeHandle")
[
all
...]
Completed in 210 milliseconds