Lines Matching refs:dlopen
121 void* handle = dlopen(g_libPath, RTLD_NOW);
123 t_error("dlopen(name=%s, mode=%d) failed: %s\n", g_libPath, RTLD_NOW, dlerror());
131 void* handle = dlopen(g_initlibPath, RTLD_NOW);
133 t_error("dlopen(name=%s, mode=%d) failed: %s\n", g_initlibPath, RTLD_NOW, dlerror());
240 * @tc.desc : multithreaded dlopen/dlclose, at the end the expected so file should not be in memory.
254 * @tc.desc : multithreaded dlopen, the init constructor should be called only once.
275 * @tc.desc : multithreaded dlopen, the deconstructor should be called only at the last dlclose.
305 void* handle1 = dlopen(g_libPath, RTLD_NOW);
307 t_error("dlopen(name=%s, mode=%d) failed: %s\n", g_libPath, RTLD_NOW, dlerror());
310 void* handle2 = dlopen(g_initlibPath, RTLD_NOW);
312 t_error("dlopen(name=%s, mode=%d) failed: %s\n", g_initlibPath, RTLD_NOW, dlerror());
332 void* handle = dlopen(g_initlibPath, RTLD_NOW);
334 t_error("dlopen(name=%s, mode=%d) failed: %s\n", g_initlibPath, RTLD_NOW, dlerror());