Home
last modified time | relevance | path

Searched refs:RTLD_GLOBAL (Results 1 – 25 of 98) sorted by relevance

1234

/third_party/rust/crates/libloading/src/os/unix/
Dconsts.rs38 pub const RTLD_GLOBAL: c_int = posix::RTLD_GLOBAL; constant
51 pub(super) const RTLD_GLOBAL: c_int = !0; constant
134 pub(super) const RTLD_GLOBAL: c_int = 2;
136 pub(super) const RTLD_GLOBAL: c_int = 0x10000;
142 pub(super) const RTLD_GLOBAL: c_int = 4;
147 pub(super) const RTLD_GLOBAL: c_int = 8;
166 pub(super) const RTLD_GLOBAL: c_int = 0x100;
/third_party/musl/libc-test/src/functional/
Ddlopen.c40 do_dlopen(SO_FOR_DLOPEN, RTLD_GLOBAL); in dlopen_global()
64 void* handle2 = dlopen(SO_LOAD_BY_GLOBAL, RTLD_GLOBAL); in dlopen_so_used_by_dlsym()
136 void* handle = dlopen(DLOPEN_WEAK, RTLD_LAZY | RTLD_GLOBAL); in dlopen_dlclose_weak()
138 t_error("dlopen(name=%s, mode=%d) failed: %s\n", DLOPEN_WEAK, RTLD_LAZY | RTLD_GLOBAL, dlerror()); in dlopen_dlclose_weak()
184 void *global_handler = dlopen(DLOPEN_GLOBAL, RTLD_GLOBAL); in dlopen_global_test()
186 t_error("dlopen(name=%s, mode=%d) failed: %s\n", DLOPEN_GLOBAL, RTLD_GLOBAL, dlerror()); in dlopen_global_test()
219 handle = dlopen(DLCLOSE_EXIT_DEAD_LOCK, RTLD_GLOBAL); in dlclose_exit_test()
241 void* handle = dlopen(DLCLOSE_WITH_TLS, RTLD_GLOBAL); in dlclose_with_tls_test()
243 t_error("dlopen(name=%s, mode=%d) failed: %s\n", DLCLOSE_WITH_TLS, RTLD_GLOBAL, dlerror()); in dlclose_with_tls_test()
288 h = dlopen(buf, RTLD_LAZY|RTLD_GLOBAL); in main()
Ddl_multithread_test.c26 void* handle = dlopen(g_libPath, RTLD_GLOBAL); in dl_test()
28 t_error("dlopen(name=%s, mode=%d) failed: %s\n", g_libPath, RTLD_GLOBAL, dlerror()); in dl_test()
Ddl_multithread_test_dso.c24 handle = dlopen(g_libPath, RTLD_GLOBAL); in ctor_dlopen()
Dtls_init_dlopen.c13 h = dlopen(buf, RTLD_NOW|RTLD_GLOBAL); in main()
/third_party/rust/crates/libloading/tests/
Dconstants.rs10 const_assert_eq!(libloading::os::unix::RTLD_GLOBAL, libc::RTLD_GLOBAL);
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/
Dldso_dlclose_test.cpp25 void* handle = dlopen("libdlopen_common_close.so", RTLD_NOW | RTLD_GLOBAL);
106 void* handle = dlopen("libldso_dlclose_test_a.so", RTLD_GLOBAL);
Dldso_dlopen_test.cpp55 void* handle = dlopen("libdlopen_order_02.so", RTLD_NOW | RTLD_GLOBAL);
215 void* handle = dlopen("libdlopen_relocation.so", RTLD_NOW | RTLD_GLOBAL);
/third_party/python/Lib/ctypes/test/
Dtest_find.py36 cls.gl = CDLL(lib_gl, mode=RTLD_GLOBAL)
41 cls.glu = CDLL(lib_glu, RTLD_GLOBAL)
/third_party/musl/libc-test/src/api/
Ddlfcn.c7 C(RTLD_GLOBAL) in f()
/third_party/musl/porting/liteos_m/kernel/include/
Ddlfcn.h14 #define RTLD_GLOBAL 256 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Ddlfcn.h14 #define RTLD_GLOBAL 256 macro
/third_party/musl/porting/uniproton/kernel/include/
Ddlfcn.h14 #define RTLD_GLOBAL 256 macro
/third_party/openssl/test/
Dsimpledynamic.h24 # define SD_SHLIB (RTLD_GLOBAL|RTLD_LAZY)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DDynamicLibrary.inc28 void *Handle = ::dlopen(File, RTLD_LAZY|RTLD_GLOBAL);
36 // with the handle of dlopen(NULL, RTLD_GLOBAL).
/third_party/python/Modules/_ctypes/darwin/
Ddlfcn.h72 #define RTLD_GLOBAL 0x8 macro
Ddlfcn_simple.c128 … | (mode & RTLD_GLOBAL) ? 0 : NSLINKMODULE_OPTION_PRIVATE in darwin_dlopen()
/third_party/libphonenumber/cpp/src/phonenumbers/ohos/
Dupdate_libphonenumber.cc33 void* handler = dlopen(LIBSO_NAME.c_str(), RTLD_NOW | RTLD_GLOBAL); in LoadUpdateData()
/third_party/node/test/addons/dlopen-ping-pong/
Dtest.js14 os.constants.dlopen.RTLD_NOW | os.constants.dlopen.RTLD_GLOBAL);
/third_party/musl/include/
Ddlfcn.h15 #define RTLD_GLOBAL 256 macro
/third_party/musl/porting/linux/user/include/
Ddlfcn.h15 #define RTLD_GLOBAL 256 macro
/third_party/openssl/crypto/dso/
Ddso_dlfcn.c108 # ifdef RTLD_GLOBAL in dlfcn_load()
110 flags |= RTLD_GLOBAL; in dlfcn_load()
/third_party/node/deps/openssl/openssl/crypto/dso/
Ddso_dlfcn.c108 # ifdef RTLD_GLOBAL in dlfcn_load()
110 flags |= RTLD_GLOBAL; in dlfcn_load()
/third_party/mesa3d/src/glx/
Ddri_common.c50 #ifndef RTLD_GLOBAL
51 #define RTLD_GLOBAL 0 macro
78 glhandle = dlopen(GL_LIB_NAME, RTLD_NOW | RTLD_GLOBAL); in driOpenDriver()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_lookup.cc52 int flag = RTLD_LAZY | RTLD_GLOBAL; in LoadSystemPropertyGet()

1234