Symbol: RTLD_LAZY
include/dlfcn.h
83
#define DL_LAZY RTLD_LAZY /* Compat */
lib/libc/citrus/citrus_module.c
336
handle = dlopen(p, RTLD_LAZY);
lib/libc/net/nsdispatch.c
319
mod.handle = dlopen(buf, RTLD_LOCAL | RTLD_LAZY);
lib/librumpuser/rumpuser_dl.c
495
handle = dlopen(map->l_name, RTLD_LAZY);
lib/libukfs/ukfs.c
1152
handle = dlopen(fname, RTLD_LAZY|RTLD_GLOBAL);
tests/lib/libc/string/t_strchr.c
249
dl_handle = dlopen(NULL, RTLD_LAZY);
tests/lib/libc/string/t_strchrnul.c
248
dl_handle = dlopen(NULL, RTLD_LAZY);
tests/lib/libc/string/t_strlen.c
111
dl_handle = dlopen(NULL, RTLD_LAZY);
tests/lib/libpthread/dlopen/t_dlopen.c
130
test_dlopen_mutex(RTLD_LAZY | RTLD_GLOBAL);
tests/lib/libpthread/dlopen/t_dlopen.c
179
test_dlopen_mutex_libc(RTLD_LAZY | RTLD_GLOBAL);
tests/lib/libpthread/dlopen/t_dlopen.c
231
test_dlopen_mutex_libpthread(RTLD_LAZY | RTLD_GLOBAL);
tests/lib/libpthread/dlopen/t_dlopen.c
80
test_dlopen(RTLD_LAZY | RTLD_GLOBAL);
tests/libexec/ld.elf_so/h_locking.c
66
if ((dso = dlopen("libh_helper_dso2.so", RTLD_LAZY)) == NULL) {
tests/libexec/ld.elf_so/h_locking.c
85
if ((dso = dlopen(arg, RTLD_LAZY)) == NULL) {
tests/libexec/ld.elf_so/h_thread_local_dtor.c
63
dso = dlopen("libh_helper_dso3.so", RTLD_LAZY);
tests/libexec/ld.elf_so/h_thread_local_dtor.c
81
dso = dlopen("libh_helper_dso3.so", RTLD_LAZY);
tests/libexec/ld.elf_so/helper_recurdso/h_helper_recurdso.c
45
dso2_handle = dlopen("libh_helper_dso2.so", RTLD_LAZY | RTLD_LOCAL);
tests/libexec/ld.elf_so/t_dlclose_thread.c
181
handle = dlopen("libh_helper_recurdso.so", RTLD_LAZY | RTLD_LOCAL);
tests/libexec/ld.elf_so/t_dlclose_thread.c
218
handle = dlopen("libh_helper_recurdso2.so", RTLD_LAZY | RTLD_LOCAL);
tests/libexec/ld.elf_so/t_dlclose_thread.c
60
handle = dlopen(path, RTLD_LAZY | RTLD_LOCAL);
tests/libexec/ld.elf_so/t_dlerror-cleared.c
54
handle = dlopen("libnonexistent.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_dlerror-false.c
57
handle = dlopen("libm.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_dlinfo.c
110
ATF_REQUIRE_MSG(dlopen(map->l_name, RTLD_LAZY) != NULL,
tests/libexec/ld.elf_so/t_dlinfo.c
78
handle = dlopen("libutil.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_dlinfo.c
97
handle = dlopen("libutil.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_dlvsym.c
117
handle = dlopen("libh_helper_symver_dso.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_dlvsym.c
147
handle = dlopen("libh_helper_symver_dso.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_dlvsym.c
178
handle = dlopen("libh_helper_symver_dso.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_dlvsym.c
53
handle = dlopen("libh_helper_symver_dso.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_dlvsym.c
85
handle = dlopen("libh_helper_symver_dso.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_ifunc.c
131
handle = dlopen("libh_helper_ifunc_dso.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_ifunc.c
77
handle = dlopen("libh_helper_ifunc_dso.so", RTLD_LAZY);
tests/libexec/ld.elf_so/t_rtld_r_debug.c
182
handle = dlopen("libutil.so", RTLD_LAZY);
usr.bin/rump_allserver/rump_allserver.c
369
RTLD_LAZY|RTLD_GLOBAL) == NULL) {
usr.bin/rump_allserver/rump_allserver.c
374
if (dlopen(pb, RTLD_LAZY|RTLD_GLOBAL) == NULL)
usr.sbin/npf/npfctl/npf_extmod.c
77
handle = dlopen(extlib, RTLD_LAZY | RTLD_LOCAL);