Searched defs:libHandle (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/omx/
H A DSoftOMXPlugin.cpp107 void *libHandle = dlopen(libName.c_str(), RTLD_NOW|RTLD_NODELETE); local
109 if (libHandle == NULL) {
121 libHandle,
126 dlclose(libHandle);
127 libHandle = NULL;
136 dlclose(libHandle);
137 libHandle = NULL;
144 dlclose(libHandle);
145 libHandle = NULL;
151 codec->setLibHandle(libHandle);
167 void *libHandle = me->libHandle(); local
[all...]
H A DSoftOMXComponent.cpp70 void SoftOMXComponent::setLibHandle(void *libHandle) { argument
71 CHECK(libHandle != NULL);
72 mLibHandle = libHandle;
75 void *SoftOMXComponent::libHandle() const { function in class:android::SoftOMXComponent
/frameworks/av/media/libstagefright/
H A DMediaExtractorFactory.cpp107 void *libHandle; member in struct:android::ExtractorPlugin
112 : def(definition), libHandle(handle), libPath(path) {
118 if (libHandle != nullptr) {
120 dlclose(libHandle);
236 void *libHandle = dlopen(libPath.string(), RTLD_NOW | RTLD_LOCAL); local
237 if (libHandle) {
239 (MediaExtractor::GetExtractorDef) dlsym(libHandle, "GETEXTRACTORDEF");
243 new ExtractorPlugin(getDef(), libHandle, libPath), pluginList);
246 dlclose(libHandle);
271 void *libHandle local
[all...]

Completed in 215 milliseconds