Home
last modified time | relevance | path

Searched refs:RTLD_LOCAL (Results 1 - 25 of 74) sorted by relevance

123

/third_party/musl/libc-test/src/functional/
H A Ddlopen.c45 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 Ddlclose_recursive_dlopen_so.cpp17 handle = dlopen(SO_CLOSE_RECURSIVE, RTLD_LOCAL); in BarIns()
21 << ",mode=" << RTLD_LOCAL \ in BarIns()
H A Ddlclose_reset.c30 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 Dconsts.rs44 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 DSharedLibrary.hpp95 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 DSharedLibrary.hpp94 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 Dconstants.rs9 const_assert_eq!(libloading::os::unix::RTLD_LOCAL, libc::RTLD_LOCAL);
/third_party/libuv/src/unix/
H A Ddarwin-proctitle.c84 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 DDLL.cpp149 #ifdef RTLD_LOCAL in Load()
150 options |= RTLD_LOCAL; in Load()
/third_party/node/deps/uv/src/unix/
H A Ddarwin-proctitle.c84 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 Dposix_module.c39 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); in _glfwPlatformLoadModule()
/third_party/musl/libc-test/src/api/
H A Ddlfcn.c8 C(RTLD_LOCAL) in f()
/third_party/musl/porting/liteos_m/kernel/include/
H A Ddlfcn.h15 #define RTLD_LOCAL 0 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Ddlfcn.h15 #define RTLD_LOCAL 0 macro
/third_party/musl/porting/uniproton/kernel/include/
H A Ddlfcn.h15 #define RTLD_LOCAL 0 macro
/third_party/musl/src/hook/linux/
H A Dmusl_fdtrack_load.c44 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 Dmusl_fdtrack_load.c25 shared_library_handle = dlopen(__fdtrack_hook_shared_lib, RTLD_NOW | RTLD_LOCAL); in __musl_fdtrack_initialize()
/third_party/mesa3d/src/util/
H A Du_dl.c47 return (struct util_dl_library *)dlopen(filename, RTLD_LAZY | RTLD_LOCAL); in util_dl_open()
/third_party/openssl/test/
H A Dsimpledynamic.h25 # define SD_MODULE (RTLD_LOCAL|RTLD_NOW)
/third_party/skia/third_party/externals/oboe/src/common/
H A DTrace.cpp60 void *lib = dlopen("libandroid.so", RTLD_NOW | RTLD_LOCAL); in initialize()
/third_party/python/Modules/_ctypes/darwin/
H A Ddlfcn.h71 #define RTLD_LOCAL 0x4 macro
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/
H A Dldso_dlsym_test.cpp103 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 Ddlfcn.h16 #define RTLD_LOCAL 0 macro
72 * -- RTLD_LOCAL.
/third_party/musl/include/
H A Ddlfcn.h16 #define RTLD_LOCAL 0 macro
72 * -- RTLD_LOCAL.
/third_party/skia/third_party/externals/oboe/samples/debug-utils/
H A Dtrace.cpp67 void *lib = dlopen("libandroid.so", RTLD_NOW | RTLD_LOCAL); in initialize()

Completed in 8 milliseconds

123