Searched refs:dlopen (Results 1 - 25 of 429) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dcatch-load.c22 #define dlopen(name, mode) LoadLibrary (TEXT (name)) macro
36 h = dlopen (libname, RTLD_LAZY);
H A Dbreak-probes.c23 void *handle = dlopen (SHLIB_NAME, RTLD_LAZY);
H A Dinfo-shared.c31 handle1 = dlopen (SHLIB1_NAME, RTLD_LAZY);
35 handle2 = dlopen (SHLIB2_NAME, RTLD_LAZY);
H A Dcorefile-buildid-shlib.c16 /* This shared library will dlopen another shared object.
24 #define dlopen(name, mode) LoadLibrary (name) macro
41 handle = dlopen (the_shlib, RTLD_LAZY);
H A Dsolib-disc.c23 #define dlopen(name, mode) LoadLibrary (name) macro
36 handle = dlopen (SHLIB_NAME, RTLD_LAZY);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
H A Dmi-catch-load.c22 #define dlopen(name, mode) LoadLibrary (TEXT (name)) macro
35 h = dlopen (libname, RTLD_LAZY);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dcatch-load.c22 #define dlopen(name, mode) LoadLibrary (TEXT (name)) macro
36 h = dlopen (libname, RTLD_LAZY);
H A Dbreak-probes.c23 void *handle = dlopen (SHLIB_NAME, RTLD_LAZY);
H A Dinfo-shared.c31 handle1 = dlopen (SHLIB1_NAME, RTLD_LAZY);
35 handle2 = dlopen (SHLIB2_NAME, RTLD_LAZY);
H A Dcorefile-buildid-shlib.c16 /* This shared library will dlopen another shared object.
24 #define dlopen(name, mode) LoadLibrary (name) macro
41 handle = dlopen (the_shlib, RTLD_LAZY);
H A Dsolib-disc.c23 #define dlopen(name, mode) LoadLibrary (name) macro
36 handle = dlopen (SHLIB_NAME, RTLD_LAZY);
H A Djit-elf-dlmain.c11 h = NULL; /* break here before-dlopen */
12 h = dlopen (jit_libname, RTLD_LAZY);
18 h = h; /* break here after-dlopen */
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
H A Dmi-catch-load.c22 #define dlopen(name, mode) LoadLibrary (TEXT (name)) macro
35 h = dlopen (libname, RTLD_LAZY);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
H A Dpy-event-load.c22 #define dlopen(name, mode) LoadLibrary (TEXT (name)) macro
36 h = dlopen (libname, RTLD_LAZY);
/netbsd-current/tests/lib/libpthread/dlopen/
H A DMakefile7 TESTSDIR= ${TESTSBASE}/lib/libpthread/dlopen
H A Dt_dlopen.c42 ATF_TC(dlopen); variable
44 ATF_TC_HEAD(dlopen, tc)
47 "Test if dlopen can load -lpthread DSO");
52 ATF_TC_BODY(dlopen, tc)
56 handle = dlopen(DSO, RTLD_NOW | RTLD_LOCAL);
57 ATF_REQUIRE_MSG(handle != NULL, "dlopen fails: %s", dlerror());
72 "Test if dlopen can load -lpthread DSO without breaking mutex");
84 handle = dlopen(DSO, RTLD_NOW | RTLD_LOCAL);
85 ATF_REQUIRE_MSG(handle != NULL, "dlopen fails: %s", dlerror());
104 "Test if dlopen ca
[all...]
/netbsd-current/tests/libexec/ld.elf_so/
H A Dh_df_1_noopen.c40 handle = dlopen("libpthread.so", RTLD_NOLOAD);
H A Dt_dlerror-cleared.c42 "error set by dlopen persists past a successful dlopen call");
51 * Test that an error set by dlopen() persists past a successful
52 * dlopen() call.
54 handle = dlopen("libnonexistent.so", RTLD_LAZY);
56 handle = dlopen("libm.so", RTLD_NOW);
H A Dt_tls_extern.c54 ATF_REQUIRE_DL(def = dlopen(libdef, 0));
57 ATF_REQUIRE_DL(use = dlopen(libuse, 0));
62 ATF_REQUIRE_DL(def = dlopen(libdef, 0));
63 ATF_REQUIRE_DL(use = dlopen(libuse, 0));
66 ATF_REQUIRE_DL(use = dlopen(libuse, 0));
67 ATF_REQUIRE_DL(def = dlopen(libdef, 0));
70 ATF_REQUIRE_DL(use = dlopen(libuse, 0));
71 ATF_REQUIRE_DL(def = dlopen(libdef, RTLD_NOLOAD));
110 atf_tc_set_md_var(tc, "descr", "dlopen refuses extern __thread for TLS,"
118 ATF_REQUIRE_DL(def = dlopen("libh_def_dynami
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dinfcall-dlopen.cc24 void *h = dlopen (filename, RTLD_LAZY);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dinfcall-dlopen.cc24 void *h = dlopen (filename, RTLD_LAZY);
/netbsd-current/tests/lib/libpthread/dlopen/dso/
H A DMakefile13 LIBDIR= ${TESTSBASE}/lib/libpthread/dlopen
14 SHLIBDIR= ${TESTSBASE}/lib/libpthread/dlopen
/netbsd-current/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.shared/
H A Dhost.c10 void *druntime = dlopen(argv[1], RTLD_LAZY); // load druntime
15 void *druntime = dlopen(argv[1], RTLD_LAZY); // load druntime
24 void* plugin1 = dlopen(name, RTLD_LAZY);
26 void* plugin2 = dlopen(name, RTLD_LAZY);
44 plugin1 = dlopen(name, RTLD_LAZY);
/netbsd-current/tests/lib/csu/
H A Dh_initfini3.cxx9 static const char msg2[] = "main after dlopen\n";
15 handle = dlopen("h_initfini3_dso.so", RTLD_NOW | RTLD_LOCAL);
17 err(1, "dlopen");
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.shared/
H A Dhost.c10 void *druntime = dlopen(argv[1], RTLD_LAZY); // load druntime
19 void* plugin1 = dlopen(name, RTLD_LAZY);
21 void* plugin2 = dlopen(name, RTLD_LAZY);
39 plugin1 = dlopen(name, RTLD_LAZY);

Completed in 383 milliseconds

1234567891011>>