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.cpp38 mLibHandle = dlopen(libPath, RTLD_NOW | RTLD_NODELETE); in C2PlatformStorePluginLoader()
39 if (mLibHandle == nullptr) { in C2PlatformStorePluginLoader()
43 mCreateBlockPool = (CreateBlockPoolFunc)dlsym(mLibHandle, "CreateBlockPool"); in C2PlatformStorePluginLoader()
47 mCreateAllocator = (CreateAllocatorFunc)dlsym(mLibHandle, "CreateAllocator"); in C2PlatformStorePluginLoader()
54 if (mLibHandle != nullptr) { in ~C2PlatformStorePluginLoader()
56 dlclose(mLibHandle); in ~C2PlatformStorePluginLoader()
DC2Store.cpp715 mLibHandle(nullptr), in ComponentModule()
733 mLibHandle(nullptr), in ComponentModule()
763 void *mLibHandle; ///< loaded library handle member
961 mLibHandle = dlopen(libPath.c_str(), RTLD_NOW|RTLD_NODELETE); in init()
962 LOG_ALWAYS_FATAL_IF(mLibHandle == nullptr, in init()
966 (C2ComponentFactory::CreateCodec2FactoryFunc)dlsym(mLibHandle, "CreateCodec2Factory"); in init()
971 (C2ComponentFactory::DestroyCodec2FactoryFunc)dlsym(mLibHandle, "DestroyCodec2Factory"); in init()
1021 if (mLibHandle) { in ~ComponentModule()
1023 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()
DOMXStore.cpp193 plugin.mLibHandle, "destroyOMXPlugin"); in clearPlugins()
199 android_unload_sphal_library(plugin.mLibHandle); in clearPlugins()
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/
DOMXStore.h57 void *mLibHandle; member
DSoftOMXComponent.h106 void *mLibHandle; member
/frameworks/av/media/codec2/vndk/include/
DC2PlatformStorePluginLoader.h97 void *mLibHandle; variable