/external/strace/tests/ |
pc.c | 69 if (dladdr(&main, &info)) {
|
/bionic/libdl/ |
libdl.c | 36 int dladdr(const void* addr __unused, Dl_info* info __unused) { return 0; } function
|
/external/clang/tools/libclang/ |
CIndexer.cpp | 75 if (dladdr((void *)(uintptr_t)clang_createTranslationUnit, &info) == 0) 76 llvm_unreachable("Call to dladdr() failed");
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
dlfcn.h | 88 `dladdr'. */ 99 extern int dladdr (__const void *__address, Dl_info *__info) 102 /* Same as `dladdr', but additionally sets *EXTRA_INFO according to FLAGS. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
dlfcn.h | 88 `dladdr'. */ 99 extern int dladdr (__const void *__address, Dl_info *__info) 102 /* Same as `dladdr', but additionally sets *EXTRA_INFO according to FLAGS. */
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer_mac.cc | 33 int result = dladdr((const void *)addr, &info); 42 int result = dladdr((const void *)addr, &info);
|
sanitizer_mac.cc | 55 #include <dlfcn.h> // for dladdr() 274 // from there is much faster than calling dladdr, especially for large 555 CHECK(dladdr((void*)((uptr)&__sanitizer_report_error_summary), &info));
|
/bionic/tests/ |
stack_unwinding_test.cpp | 48 if (dladdr(ip, &info) != 0) {
|
dlfcn_test.cpp | 785 // Deliberately ask dladdr for an address inside a symbol, rather than the symbol base address. 789 int rc = dladdr(addr, &info); 850 ASSERT_TRUE(dladdr(addr, &info) != 0); 872 ASSERT_EQ(dladdr(nullptr, &info), 0); // Zero on error, non-zero on success. 873 ASSERT_TRUE(dlerror() == nullptr); // dladdr(3) doesn't set dlerror(3). 876 ASSERT_EQ(dladdr(&info, &info), 0); // Zero on error, non-zero on success. 877 ASSERT_TRUE(dlerror() == nullptr); // dladdr(3) doesn't set dlerror(3). 897 ASSERT_TRUE(0 != dladdr(reinterpret_cast<void*>(fn), &dlinfo)); 920 ASSERT_TRUE(0 != dladdr(reinterpret_cast<void*>(fn), &dlinfo)); [all...] |
/external/v8/src/base/ |
logging.cc | 66 if (!dladdr(trace[i], &info) || !info.dli_sname) {
|
/bionic/linker/ |
dlfcn.cpp | 111 int dladdr(const void* addr, Dl_info* info) { function 202 "dlopen\0dlclose\0dlsym\0dlerror\0dladdr\0android_update_LD_LIBRARY_PATH\0android_get_LD_LIBRARY_PATH\0dl_it" 225 ELFW(SYM_INITIALIZER)( 29, &dladdr, 1),
|
/bionic/libc/malloc_debug/ |
backtrace.cpp | 142 if (dladdr(reinterpret_cast<void*>(frames[frame_num]), &info) != 0) {
|
/external/libunwind_llvm/src/ |
AddressSpace.hpp | 324 if (!dladdr(addr, &dlinfo)) 462 if (dladdr((void *)addr, &dyldInfo)) {
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
AddressSpace.hpp | 317 if (!dladdr(addr, &dlinfo)) 448 if (dladdr((void *)addr, &dyldInfo)) {
|
/libcore/ojluni/src/main/native/ |
java_props_md.c | 342 dladdr((void *)getEmbeddedToolkit, &dlinfo);
|
/external/compiler-rt/lib/msan/ |
msan_interceptors.cc | [all...] |
/external/compiler-rt/lib/msan/tests/ |
msan_test.cc | [all...] |