/third_party/musl/libc-test/src/functional/ |
H A D | dlopen.c | 45 do_dlopen(SO_FOR_DLOPEN, RTLD_LOCAL); in dlopen_local() 50 void* handle1 = dlopen(SO_LOAD_BY_LOCAL, RTLD_LOCAL); in dlopen_so_used_by_dlsym() 52 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_LOAD_BY_LOCAL, RTLD_LOCAL, dlerror()); in dlopen_so_used_by_dlsym() 54 // dlsym can't see the so which is loaded by RTLD_LOCAL. in dlopen_so_used_by_dlsym() 57 t_error("dlsym RTLD_LOCAL so(%s) should failed but get succeed.\n", "for_local"); in dlopen_so_used_by_dlsym() 66 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_LOAD_BY_GLOBAL, RTLD_LOCAL, dlerror()); in dlopen_so_used_by_dlsym() 100 void* handle = dlopen(SO_FOR_DLOPEN, RTLD_LOCAL); in dlopen_dlclose() 102 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_FOR_DLOPEN, RTLD_LOCAL, dlerror()); in dlopen_dlclose() 104 handle = dlopen(SO_FOR_DLOPEN, RTLD_LOCAL); in dlopen_dlclose() 106 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_FOR_DLOPEN, RTLD_LOCAL, dlerro in dlopen_dlclose() [all...] |
H A D | dlclose_recursive_dlopen_so.cpp | 17 handle = dlopen(SO_CLOSE_RECURSIVE, RTLD_LOCAL); in BarIns() 21 << ",mode=" << RTLD_LOCAL \ in BarIns()
|
H A D | dlclose_reset.c | 30 h = dlopen(buf, RTLD_LAZY|RTLD_LOCAL); in main() 48 g = dlopen(buf, RTLD_LAZY|RTLD_LOCAL); in main()
|
/third_party/rust/crates/libloading/src/os/unix/ |
H A D | consts.rs | 44 pub const RTLD_LOCAL: c_int = posix::RTLD_LOCAL; consts 52 pub(super) const RTLD_LOCAL: c_int = !0; 176 pub(super) const RTLD_LOCAL: c_int = 0x200; 178 pub(super) const RTLD_LOCAL: c_int = 0x80000; 183 pub(super) const RTLD_LOCAL: c_int = 4; 204 pub(super) const RTLD_LOCAL: c_int = 0; 207 "Target has no known `RTLD_LOCAL` value. Please submit an issue or PR adding it."
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | SharedLibrary.hpp | 95 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); in loadLibrary() 102 return dlopen(path, RTLD_NOW | RTLD_LOCAL); in getLibraryHandle() 104 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL); in getLibraryHandle() 108 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); // Increment reference count in getLibraryHandle()
|
/third_party/skia/third_party/externals/swiftshader/src/System/ |
H A D | SharedLibrary.hpp | 94 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); in loadLibrary() 101 return dlopen(path, RTLD_NOW | RTLD_LOCAL); in getLibraryHandle() 103 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL); in getLibraryHandle() 107 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); // Increment reference count in getLibraryHandle()
|
/third_party/rust/crates/libloading/tests/ |
H A D | constants.rs | 9 const_assert_eq!(libloading::os::unix::RTLD_LOCAL, libc::RTLD_LOCAL);
|
/third_party/libuv/src/unix/ |
H A D | darwin-proctitle.c | 84 RTLD_LAZY | RTLD_LOCAL); in uv__set_process_title() 88 RTLD_LAZY | RTLD_LOCAL); in uv__set_process_title()
|
/third_party/lzma/CPP/Windows/ |
H A D | DLL.cpp | 149 #ifdef RTLD_LOCAL
in Load() 150 options |= RTLD_LOCAL;
in Load()
|
/third_party/node/deps/uv/src/unix/ |
H A D | darwin-proctitle.c | 84 RTLD_LAZY | RTLD_LOCAL); in uv__set_process_title() 88 RTLD_LAZY | RTLD_LOCAL); in uv__set_process_title()
|
/third_party/glfw/src/ |
H A D | posix_module.c | 39 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); in _glfwPlatformLoadModule()
|
/third_party/musl/libc-test/src/api/ |
H A D | dlfcn.c | 8 C(RTLD_LOCAL) in f()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | dlfcn.h | 15 #define RTLD_LOCAL 0 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | dlfcn.h | 15 #define RTLD_LOCAL 0 macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | dlfcn.h | 15 #define RTLD_LOCAL 0 macro
|
/third_party/musl/src/hook/linux/ |
H A D | musl_fdtrack_load.c | 44 shared_library_handle = dlopen(__fdtrack_hook_shared_lib, RTLD_NOW | RTLD_LOCAL); in __musl_fdtrack_initialize()
|
/third_party/musl/porting/linux/user/src/hook/ |
H A D | musl_fdtrack_load.c | 25 shared_library_handle = dlopen(__fdtrack_hook_shared_lib, RTLD_NOW | RTLD_LOCAL); in __musl_fdtrack_initialize()
|
/third_party/mesa3d/src/util/ |
H A D | u_dl.c | 47 return (struct util_dl_library *)dlopen(filename, RTLD_LAZY | RTLD_LOCAL); in util_dl_open()
|
/third_party/openssl/test/ |
H A D | simpledynamic.h | 25 # define SD_MODULE (RTLD_LOCAL|RTLD_NOW)
|
/third_party/skia/third_party/externals/oboe/src/common/ |
H A D | Trace.cpp | 60 void *lib = dlopen("libandroid.so", RTLD_NOW | RTLD_LOCAL); in initialize()
|
/third_party/python/Modules/_ctypes/darwin/ |
H A D | dlfcn.h | 71 #define RTLD_LOCAL 0x4 macro
|
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/ |
H A D | ldso_dlsym_test.cpp | 103 void* prehandle = dlopen("libdlsym_get_symbol_impl.so", RTLD_NOW | RTLD_LOCAL); in HWTEST_F() 104 void* handle = dlopen("libdlsym_get_symbol.so", RTLD_NOW | RTLD_LOCAL); in HWTEST_F()
|
/third_party/musl/porting/linux/user/include/ |
H A D | dlfcn.h | 16 #define RTLD_LOCAL 0 macro 72 * -- RTLD_LOCAL.
|
/third_party/musl/include/ |
H A D | dlfcn.h | 16 #define RTLD_LOCAL 0 macro 72 * -- RTLD_LOCAL.
|
/third_party/skia/third_party/externals/oboe/samples/debug-utils/ |
H A D | trace.cpp | 67 void *lib = dlopen("libandroid.so", RTLD_NOW | RTLD_LOCAL); in initialize()
|