Home
last modified time | relevance | path

Searched refs:libHandle (Results 1 – 5 of 5) sorted by relevance

/external/v4l2_codec2/plugin_store/
DVendorAllocatorLoader.cpp24 void* libHandle = dlopen(kLibPath, RTLD_NOW | RTLD_NODELETE); in Create() local
25 if (!libHandle) { in Create()
30 auto createAllocatorFunc = (CreateAllocatorFunc)dlsym(libHandle, kCreateAllocatorFuncName); in Create()
33 dlclose(libHandle); in Create()
38 new VendorAllocatorLoader(libHandle, createAllocatorFunc)); in Create()
41 VendorAllocatorLoader::VendorAllocatorLoader(void* libHandle, in VendorAllocatorLoader() argument
43 : mLibHandle(libHandle), mCreateAllocatorFunc(createAllocatorFunc) { in VendorAllocatorLoader()
/external/deqp/framework/delibs/deutil/
DdeDynamicLibrary.c34 void* libHandle; member
43 library->libHandle = dlopen(fileName, RTLD_LAZY); in deDynamicLibrary_open()
44 if (!library->libHandle) in deDynamicLibrary_open()
55 if (library && library->libHandle) in deDynamicLibrary_close()
56 dlclose(library->libHandle); in deDynamicLibrary_close()
69 DE_ASSERT(library && library->libHandle && symbolName); in deDynamicLibrary_getFunction()
70 ptr.objPtr = dlsym(library->libHandle, symbolName); in deDynamicLibrary_getFunction()
/external/v4l2_codec2/store/
DV4L2ComponentStore.cpp42 void* libHandle = dlopen(kLibPath, RTLD_NOW | RTLD_NODELETE); in Create() local
43 if (!libHandle) { in Create()
48 auto createFactoryFunc = (CreateV4L2FactoryFunc)dlsym(libHandle, kCreateFactoryFuncName); in Create()
49 auto destroyFactoryFunc = (DestroyV4L2FactoryFunc)dlsym(libHandle, kDestroyFactoryFuncName); in Create()
52 dlclose(libHandle); in Create()
57 new V4L2ComponentStore(libHandle, createFactoryFunc, destroyFactoryFunc)); in Create()
62 V4L2ComponentStore::V4L2ComponentStore(void* libHandle, CreateV4L2FactoryFunc createFactoryFunc, in V4L2ComponentStore() argument
64 : mLibHandle(libHandle), in V4L2ComponentStore()
/external/v4l2_codec2/plugin_store/include/v4l2_codec2/plugin_store/
DVendorAllocatorLoader.h30 VendorAllocatorLoader(void* libHandle, CreateAllocatorFunc createAllocatorFunc);
/external/v4l2_codec2/store/include/v4l2_codec2/store/
DV4L2ComponentStore.h47 V4L2ComponentStore(void* libHandle, CreateV4L2FactoryFunc createFactoryFunc,