Home
last modified time | relevance | path

Searched refs:mLibHandle (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/drm/libmediadrm/
DSharedLibrary.cpp28 mLibHandle = dlopen(path.string(), RTLD_NOW); in SharedLibrary()
32 if (mLibHandle != NULL) { in ~SharedLibrary()
33 dlclose(mLibHandle); in ~SharedLibrary()
34 mLibHandle = NULL; in ~SharedLibrary()
39 return mLibHandle == NULL; in operator !()
43 if (!mLibHandle) { in lookup()
49 return dlsym(mLibHandle, symbol); in lookup()
/frameworks/av/media/codec2/vndk/
DC2PlatformStorePluginLoader.cpp37 mLibHandle = dlopen(libPath, RTLD_NOW | RTLD_NODELETE); in C2PlatformStorePluginLoader()
38 if (mLibHandle == nullptr) { in C2PlatformStorePluginLoader()
42 mCreateBlockPool = (CreateBlockPoolFunc)dlsym(mLibHandle, "CreateBlockPool"); in C2PlatformStorePluginLoader()
46 mCreateAllocator = (CreateAllocatorFunc)dlsym(mLibHandle, "CreateAllocator"); in C2PlatformStorePluginLoader()
53 if (mLibHandle != nullptr) { in ~C2PlatformStorePluginLoader()
55 dlclose(mLibHandle); in ~C2PlatformStorePluginLoader()
DC2Store.cpp562 mLibHandle(nullptr), in ComponentModule()
592 void *mLibHandle; ///< loaded library handle member
740 mLibHandle = dlopen(libPath.c_str(), RTLD_NOW|RTLD_NODELETE); in init()
741 LOG_ALWAYS_FATAL_IF(mLibHandle == nullptr, in init()
745 (C2ComponentFactory::CreateCodec2FactoryFunc)dlsym(mLibHandle, "CreateCodec2Factory"); in init()
750 (C2ComponentFactory::DestroyCodec2FactoryFunc)dlsym(mLibHandle, "DestroyCodec2Factory"); in init()
867 if (mLibHandle) { in ~ComponentModule()
869 dlclose(mLibHandle); in ~ComponentModule()
/frameworks/av/drm/libmediadrm/include/mediadrm/
DSharedLibrary.h35 void *mLibHandle;
/frameworks/av/media/libstagefright/omx/
DSoftOMXComponent.cpp34 mLibHandle(NULL) { in SoftOMXComponent()
72 mLibHandle = libHandle; in setLibHandle()
76 return mLibHandle; in libHandle()
DOMXMaster.cpp139 plugin.mLibHandle, "destroyOMXPlugin"); in clearPlugins()
145 android_unload_sphal_library(plugin.mLibHandle); in clearPlugins()
/frameworks/av/media/codec2/vndk/include/
DC2PlatformStorePluginLoader.h93 void *mLibHandle; variable
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/
DOMXMaster.h57 void *mLibHandle; member
DSoftOMXComponent.h106 void *mLibHandle; member