Lines Matching refs:RTLD_LOCAL
45 do_dlopen(SO_FOR_DLOPEN, RTLD_LOCAL);
50 void* handle1 = dlopen(SO_LOAD_BY_LOCAL, RTLD_LOCAL);
52 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_LOAD_BY_LOCAL, RTLD_LOCAL, dlerror());
54 // dlsym can't see the so which is loaded by RTLD_LOCAL.
57 t_error("dlsym RTLD_LOCAL so(%s) should failed but get succeed.\n", "for_local");
66 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_LOAD_BY_GLOBAL, RTLD_LOCAL, dlerror());
100 void* handle = dlopen(SO_FOR_DLOPEN, RTLD_LOCAL);
102 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_FOR_DLOPEN, RTLD_LOCAL, dlerror());
104 handle = dlopen(SO_FOR_DLOPEN, RTLD_LOCAL);
106 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_FOR_DLOPEN, RTLD_LOCAL, dlerror());
114 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_FOR_DLOPEN, RTLD_LOCAL, dlerror());
126 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_FOR_DLOPEN, RTLD_LOCAL, dlerror());
150 void *handle = dlopen(SO_CLOSE_RECURSIVE_OPEN_SO, RTLD_LAZY | RTLD_LOCAL);
152 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_CLOSE_RECURSIVE_OPEN_SO, RTLD_LAZY | RTLD_LOCAL, dlerror());
194 void *local_handler = dlopen(DLOPEN_LOCAL, RTLD_LOCAL);
196 t_error("dlopen(name=%s, mode=%d) failed: %s\n", DLOPEN_LOCAL, RTLD_LOCAL, dlerror());
262 h = dlopen(buf, RTLD_LAZY|RTLD_LOCAL);
277 g = dlopen(0, RTLD_LAZY|RTLD_LOCAL);