imagemagick
dlsymdlopen7.0.8-7
8 / 2378 files match, 3 filtered matches.
MagickCore/opencl.c
2459 | #ifdef MAGICKCORE_WINDOWS_SUPPORT
2460 | openCL_library->library=(void *)LoadLibraryA("OpenCL.dll");
2461 | #else
2462 | openCL_library->library=(void *)dlopen("libOpenCL.so", RTLD_NOW);
2463 | #endif
2464 | #define BIND(X) \
MagickCore/nt-base.c
1540 | UnlockSemaphoreInfo(ghost_semaphore);
1541 | return(FALSE);
1542 | }
1543 | ghost_handle=lt_dlopen(path);
1544 | if (ghost_handle == (void *) NULL)
1545 | {
MagickCore/module.c
987 | /*
988 | Open the module.
989 | */
990 | handle=(ModuleHandle) lt_dlopen(path);
991 | if (handle == (ModuleHandle) NULL)
992 | {
1268 | */
1269 | (void) LogMagickEvent(ModuleEvent,GetMagickModule(),
1270 | "Opening module at path \"%s\"",path);
1271 | handle=(ModuleHandle) lt_dlopen(path);
1272 | if (handle == (ModuleHandle) NULL)
1273 | {