Searched refs:dlopen (Results 26 - 50 of 164) sorted by relevance

1234567

/freebsd-13-stable/contrib/netbsd-tests/lib/libc/tls/
H A Dt_tls_dlopen.c55 "Test (un)initialized TLS variables and dlopen");
93 handle = dlopen("h_tls_dlopen.so", RTLD_NOW | RTLD_LOCAL);
/freebsd-13-stable/contrib/netbsd-tests/lib/libpthread/dlopen/
H A Dt_dso_pthread_create.c77 handle = dlopen(DSO, RTLD_NOW | RTLD_LOCAL);
78 ATF_REQUIRE_MSG(handle != NULL, "dlopen fails: %s", dlerror());
H A Dt_main_pthread_create.c86 handle = dlopen(DSO, RTLD_NOW | RTLD_LOCAL);
87 ATF_REQUIRE_MSG(handle != NULL, "dlopen fails: %s", dlerror());
/freebsd-13-stable/contrib/netbsd-tests/libexec/ld.elf_so/
H A Dt_ifunc.c62 handle = dlopen("libh_helper_ifunc_dso.so", RTLD_LAZY);
/freebsd-13-stable/lib/libc/gen/
H A Ddlfcn.c113 #pragma weak dlopen macro
115 dlopen(const char *name __unused, int mode __unused) function
H A DMakefile.inc219 dlopen.3 \
348 MLINKS+=dlopen.3 fdlopen.3 \
349 dlopen.3 dlclose.3 \
350 dlopen.3 dlerror.3 \
351 dlopen.3 dlfunc.3 \
352 dlopen.3 dlsym.3 \
353 dlopen.3 dlvsym.3
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_value.cpp40 // Prevent threads from racing to dlopen().
46 ObjCHandle = dlopen(
/freebsd-13-stable/contrib/ofed/opensm/opensm/
H A Dosm_event_plugin.c84 rc->handle = dlopen(lib_name, RTLD_LAZY);
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/string/
H A Dt_strchr.c249 dl_handle = dlopen(NULL, RTLD_LAZY);
H A Dt_strlen.c111 dl_handle = dlopen(NULL, RTLD_LAZY);
/freebsd-13-stable/contrib/netbsd-tests/lib/libpthread_dbg/
H A Dh_common.h112 ATF_REQUIRE_MSG((handle = dlopen(NULL, RTLD_LOCAL | RTLD_LAZY))
113 != NULL, "dlopen(3) failed: %s", dlerror());
/freebsd-13-stable/lib/libc/tests/stdlib/
H A Dcxa_thread_atexit_test.cc86 libthr_handle = dlopen("libthr.so.3", RTLD_LAZY | RTLD_GLOBAL |
/freebsd-13-stable/contrib/llvm-project/libcxx/src/include/
H A Drefstring.h47 void* handle = dlopen("/usr/lib/libstdc++.6.dylib", RTLD_NOLOAD);
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.provregex4.ksh30 # This test verifies that USDT probes will be picked up after a dlopen(3C)
109 if ((alt = dlopen("./altlib.so", RTLD_LAZY | RTLD_LOCAL))
111 printf("dlopen of altlib.so failed: %s\n", dlerror());
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.dlclose1.ksh117 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
118 printf("dlopen of livelib.so failed: %s\n", dlerror());
H A Dtst.dlclose3.ksh121 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
122 printf("dlopen of livelib.so failed: %s\n", dlerror());
/freebsd-13-stable/contrib/libxo/libxo/
H A Dxo_encoder.c35 #define dlopen(_n, _f) NULL /* Fail */ macro
116 void *xe_dlhandle; /* dlopen handle */
225 dlp = dlopen((const char *) buf, RTLD_NOW);
/freebsd-13-stable/contrib/apr/dso/unix/
H A Ddso.c123 void *os_handle = dlopen((char *)path, RTLD_NOW | RTLD_GLOBAL);
133 * dlopen() support for such a library requires that the
139 os_handle = dlopen(path, flags);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c348 m_libHandle = dlopen(dllName, RTLD_LAZY);
357 m_libHandle = dlopen(DEFAULT_DLLNAME, RTLD_LAZY);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/cfi/
H A Dcfi.cpp210 // dlopen(RTLD_NOLOAD | RTLD_LAZY)
415 // Setup shadow for dlopen()ed libraries.
416 // The actual shadow setup happens after dlopen() returns, which means that
419 // In glibc, mmap inside dlopen is not interceptable.
423 INTERCEPTOR(void*, dlopen, const char *filename, int flag) {
426 void *handle = REAL(dlopen)(filename, flag);
447 INTERCEPT_FUNCTION(dlopen);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_unwind_linux_libcdep.cpp20 #include <dlfcn.h> // for dlopen()
101 void *p = dlopen("libcorkscrew.so", RTLD_LAZY);
/freebsd-13-stable/contrib/openpam/lib/libpam/
H A Dopenpam_dynamic.c76 openpam_log(PAM_LOG_LIBDEBUG, "dlopen(%s)", modfn);
103 openpam_log(PAM_LOG_LIBDEBUG, "dlopen(%s)", modfn);
109 if ((dlh = dlopen(modfn, RTLD_NOW)) == NULL) {
/freebsd-13-stable/contrib/netbsd-tests/rump/rumpkern/
H A Dt_modcmd.c136 handle = dlopen(TMPFSMODULE, RTLD_GLOBAL);
/freebsd-13-stable/sys/sys/
H A Dlink_aout.h173 void *(*dlopen)(const char *, int); /* NONE */ member in struct:ld_entry
/freebsd-13-stable/crypto/heimdal/lib/kadm5/
H A Dpassword_quality.c287 handle = dlopen(check_library, RTLD_NOW);
327 handle = dlopen(check_library, RTLD_NOW);

Completed in 158 milliseconds

1234567