/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/ |
H A D | ldso_dladdr_test.cpp | 13 * @tc.desc: Test that dladdr can execute correctly. 24 int ret = dladdr(fn, &dlInfo); in HWTEST_F() 50 int ret = dladdr(fn, &dlInfo); in HWTEST_F() 77 int ret = dladdr(fn, &dlInfo); in HWTEST_F() 100 int ret = dladdr((void*)(&printf), &dlInfo); in HWTEST_F() 126 int ret = dladdr(nullptr, &dlInfo); in HWTEST_F() 130 ret = dladdr(&addr, &dlInfo); in HWTEST_F()
|
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ |
H A D | dladdr.c | 33 int ret = dladdr((void *)test1, &info); in dladdr_0100() 36 char *name = "dladdr"; in dladdr_0100() 51 int ret = dladdr(NULL, &info); in dladdr_0200()
|
/third_party/python/Modules/_ctypes/darwin/ |
H A D | dlfcn_simple.c | 57 extern int dladdr(const void *, Dl_info *) __attribute__((weak_import)); 65 #define dladdr darwin_dladdr macro 260 ctypes_dladdr = dladdr; in ctypes_dlfcn_init()
|
H A D | dlfcn.h | 42 * Structure filled in by dladdr(). 66 extern int dladdr(const void *, Dl_info *);
|
/third_party/node/deps/openssl/openssl/crypto/dso/ |
H A D | dso_dlfcn.c | 16 # define _GNU_SOURCE /* make sure dladdr is declared */ 284 This is a quote from IRIX manual for dladdr(3c): 286 <dlfcn.h> does not contain a prototype for dladdr or definition of 288 but contains no dladdr prototype and no IRIX library contains an 313 static int dladdr(void *address, Dl_info *dl) in dladdr() function 335 * This dladdr()-implementation will also find the ptrgl (Pointer Glue) virtual 339 static int dladdr(void *ptr, Dl_info *dl) in dladdr() function 422 if (dladdr(addr, &dli)) { in dlfcn_pathbyaddr()
|
/third_party/openssl/crypto/dso/ |
H A D | dso_dlfcn.c | 16 # define _GNU_SOURCE /* make sure dladdr is declared */ 284 This is a quote from IRIX manual for dladdr(3c): 286 <dlfcn.h> does not contain a prototype for dladdr or definition of 288 but contains no dladdr prototype and no IRIX library contains an 313 static int dladdr(void *address, Dl_info *dl) in dladdr() function 335 * This dladdr()-implementation will also find the ptrgl (Pointer Glue) virtual 339 static int dladdr(void *ptr, Dl_info *dl) in dladdr() function 422 if (dladdr(addr, &dli)) { in dlfcn_pathbyaddr()
|
/third_party/FreeBSD/contrib/libexecinfo/ |
H A D | backtrace.c | 132 (void)dladdr(addr, &dli);
in format_address() 210 dladdr(bt[i], &info);
in print_backtrace()
|
/third_party/musl/src/ldso/ |
H A D | dladdr.c | 9 weak_alias(stub_dladdr, dladdr);
|
/third_party/python/Modules/_ctypes/ |
H A D | ctypes_dlfcn.h | 18 #define ctypes_dladdr dladdr
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | dlfcn.h | 34 int dladdr(const void *, Dl_info *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | dlfcn.h | 34 int dladdr(const void *, Dl_info *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | dlfcn.h | 34 int dladdr(const void *, Dl_info *);
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | SharedLibrary.cpp | 42 if(dladdr(&dummy_symbol, &dl_info) != 0) in getModuleDirectory()
|
/third_party/musl/porting/linux/user/include/ |
H A D | dlfcn.h | 173 int dladdr(const void *, Dl_info *);
|
/third_party/musl/include/ |
H A D | dlfcn.h | 173 int dladdr(const void *, Dl_info *);
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | LinuxMallocProfiling.cpp | 83 dladdr(C.first, &dli); in ~LinuxMallocProfiling()
|
/third_party/libunwind/libunwind/src/ |
H A D | dl-iterate-phdr.c | 75 && dladdr (ehdr, &canonical_info) != 0 in dl_iterate_phdr()
|
/third_party/mesa3d/src/util/ |
H A D | build_id.c | 114 if (!dladdr(addr, &info)) in build_id_find_nhdr_for_addr()
|
H A D | disk_cache.h | 102 if (!dladdr(ptr, &info) || !info.dli_fname) { in disk_cache_get_function_timestamp()
|
/third_party/musl/libc-test/src/gwp_asan/ |
H A D | unwind_test.c | 62 if (dladdr((void *)frame_buf[i], &info)) {
in main() 69 t_error("FAIL:gwp_asan unwind failed, dladdr %p return 0!\n", (void*)frame_buf[i]);
in main()
|
/third_party/rust/crates/libloading/src/os/unix/ |
H A D | mod.rs | 409 if dladdr(self.pointer, info.as_mut_ptr()) != 0 { in fmt() 435 fn dladdr(addr: *mut raw::c_void, info: *mut DlInfo) -> raw::c_int; in dladdr() functions
|
/third_party/musl/src/malloc/liteos_a/user_debug/ |
H A D | backtrace.c | 84 dladdr((void *)buffer[i], &info); in backtrace_symbols()
|
/third_party/musl/porting/liteos_a/user_debug/src/malloc/ |
H A D | backtrace.c | 69 dladdr((void *)buffer[i], &info); in backtrace_symbols()
|
/third_party/skia/tools/ |
H A D | CrashHandler.cpp | 110 if (dladdr(stack[i], &info) && info.dli_sname) { in handler()
|
/third_party/python/Mac/Tools/ |
H A D | pythonw.c | 65 if (dladdr(Py_Initialize, &info) == 0) { in get_python_path()
|