/third_party/musl/libc-test/src/functional/ |
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() 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, dlerror()); in dlopen_dlclose() 114 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_FOR_DLOPEN, RTLD_LOCAL, dlerror()); in dlopen_dlclose() 126 t_error("dlopen(name=%s, mode=%d) failed: %s\n", SO_FOR_DLOPEN, RTLD_LOCAL, dlerror()); in dlopen_dlclose() [all …]
|
D | dlclose_recursive_dlopen_so.cpp | 17 handle = dlopen(SO_CLOSE_RECURSIVE, RTLD_LOCAL); in BarIns() 21 << ",mode=" << RTLD_LOCAL \ in BarIns()
|
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/ |
D | consts.rs | 44 pub const RTLD_LOCAL: c_int = posix::RTLD_LOCAL; constant 52 pub(super) const RTLD_LOCAL: c_int = !0; constant 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;
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
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/ |
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/ |
D | constants.rs | 9 const_assert_eq!(libloading::os::unix::RTLD_LOCAL, libc::RTLD_LOCAL);
|
/third_party/lzma/CPP/Windows/ |
D | DLL.cpp | 149 #ifdef RTLD_LOCAL in Load() 150 options |= RTLD_LOCAL; in Load()
|
/third_party/libuv/src/unix/ |
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/node/deps/uv/src/unix/ |
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/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/ |
D | ldso_dlopen_test.cpp | 82 void* handle = dlopen("libdlopen_order_003.so", RTLD_NOW | RTLD_LOCAL); 105 void* handle = dlopen("libdlopen_005.so", RTLD_NOW | RTLD_LOCAL); 200 handle = dlopen("libdlopen_relocation.so", RTLD_NOW | RTLD_LOCAL);
|
D | ldso_dlsym_test.cpp | 103 void* prehandle = dlopen("libdlsym_get_symbol_impl.so", RTLD_NOW | RTLD_LOCAL); 104 void* handle = dlopen("libdlsym_get_symbol.so", RTLD_NOW | RTLD_LOCAL);
|
/third_party/musl/libc-test/src/api/ |
D | dlfcn.c | 8 C(RTLD_LOCAL) in f()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | dlfcn.h | 15 #define RTLD_LOCAL 0 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | dlfcn.h | 15 #define RTLD_LOCAL 0 macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | dlfcn.h | 15 #define RTLD_LOCAL 0 macro
|
/third_party/openssl/test/ |
D | simpledynamic.h | 25 # define SD_MODULE (RTLD_LOCAL|RTLD_NOW)
|
/third_party/python/Modules/_ctypes/darwin/ |
D | dlfcn.h | 71 #define RTLD_LOCAL 0x4 macro
|
/third_party/skia/third_party/externals/oboe/src/common/ |
D | Trace.cpp | 60 void *lib = dlopen("libandroid.so", RTLD_NOW | RTLD_LOCAL); in initialize()
|
/third_party/mesa3d/src/util/ |
D | u_dl.c | 47 return (struct util_dl_library *)dlopen(filename, RTLD_LAZY | RTLD_LOCAL); in util_dl_open()
|
/third_party/musl/src/internal/ |
D | locale_impl.c | 45 cur_handle = dlopen(cur_so, RTLD_LOCAL); in get_icu_handle()
|
/third_party/musl/src/hook/linux/ |
D | musl_fdtrack_load.c | 55 shared_library_handle = dlopen(__fdtrack_hook_shared_lib, RTLD_NOW | RTLD_LOCAL); in __musl_fdtrack_initialize()
|
/third_party/skia/third_party/externals/oboe/samples/debug-utils/ |
D | trace.cpp | 67 void *lib = dlopen("libandroid.so", RTLD_NOW | RTLD_LOCAL); in initialize()
|
/third_party/musl/porting/linux/user/src/hook/ |
D | musl_fdtrack_load.c | 26 shared_library_handle = dlopen(__fdtrack_hook_shared_lib, RTLD_NOW | RTLD_LOCAL); in load_fdtrack_hook_shared_library()
|
/third_party/musl/include/ |
D | dlfcn.h | 16 #define RTLD_LOCAL 0 macro
|