OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
83
void *
libHandle
= dlopen(libName.c_str(), RTLD_NOW);
85
if (
libHandle
== NULL) {
97
libHandle
,
102
dlclose(
libHandle
);
103
libHandle
= NULL;
112
dlclose(
libHandle
);
113
libHandle
= NULL;
120
dlclose(
libHandle
);
121
libHandle
= NULL;
127
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 1110 milliseconds