/third_party/musl/third_party/openbsd/gnu/lib/libexecinfo/ |
H A D | backtrace.c | 100 len = rasprintf(buf, bufsiz, o, "%s", dli->dli_sname); in format_string() 140 if (dli.dli_sname == NULL) { in format_address() 142 dli.dli_sname = str; in format_address() 146 snprintf(dli.dli_sname, TEMP_SIZE, "%c%tx", sign, offset); in format_address() 150 snprintf(dli.dli_sname, TEMP_SIZE, "%c%tx", sign, offset); in format_address() 153 dli.dli_sname = "???"; in format_address()
|
/third_party/FreeBSD/contrib/libexecinfo/ |
H A D | backtrace.c | 100 len = rasprintf(buf, bufsiz, o, "%s", dli->dli_sname);
in format_string() 134 if (dli.dli_sname == NULL)
in format_address() 135 dli.dli_sname = "???";
in format_address() 211 if (info.dli_sname) {
in print_backtrace() 212 printf("Address: %p, Symbol: %s\n", bt[i], info.dli_sname);
in print_backtrace()
|
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/ |
H A D | ldso_dladdr_test.cpp | 27 EXPECT_STREQ(dlInfo.dli_sname, "DlopenCommon"); in HWTEST_F() 53 EXPECT_STREQ(dlInfo.dli_sname, "DlopenCommon"); in HWTEST_F() 80 EXPECT_STREQ(dlInfo.dli_sname, "DlopenCommon"); in HWTEST_F() 103 EXPECT_STREQ(dlInfo.dli_sname, "printf"); in HWTEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | LinuxMallocProfiling.cpp | 86 if (dli.dli_sname == NULL) { in ~LinuxMallocProfiling() 89 *Ls << dli.dli_sname; in ~LinuxMallocProfiling()
|
/third_party/skia/tools/ |
H A D | CrashHandler.cpp | 110 if (dladdr(stack[i], &info) && info.dli_sname) { in handler() 115 abi::__cxa_demangle(info.dli_sname, demangled, &len, &ok); in handler()
|
/third_party/rust/crates/libloading/src/os/unix/ |
H A D | mod.rs | 411 if info.dli_sname.is_null() { in fmt() 417 CStr::from_ptr(info.dli_sname), self.pointer, in fmt() 442 dli_sname: *const raw::c_char,
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | dlfcn.h | 31 const char *dli_sname; member
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | dlfcn.h | 31 const char *dli_sname; member
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | dlfcn.h | 31 const char *dli_sname; member
|
/third_party/python/Modules/_ctypes/darwin/ |
H A D | dlfcn.h | 48 const char *dli_sname; /* Name of nearest symbol */ member
|
/third_party/musl/porting/linux/user/include/ |
H A D | dlfcn.h | 170 const char *dli_sname; member
|
/third_party/musl/include/ |
H A D | dlfcn.h | 170 const char *dli_sname; member
|
/third_party/node/src/ |
H A D | debug_utils.cc | 104 if (info.dli_sname != nullptr) { 106 abi::__cxa_demangle(info.dli_sname, nullptr, nullptr, nullptr)) { 110 ret.name = info.dli_sname;
|
/third_party/musl/src/malloc/liteos_a/user_debug/ |
H A D | backtrace.c | 93 snprintf(str_buffer, STRING_MAX_LEN, " #%02d: <%s+%#x>[%#x] -> %s\n", i, info.dli_sname, in backtrace_symbols()
|
H A D | memory_check.c | 299 printf("\t#%02d: <%s+%#x>[%#x] -> %s\n", i, info.dli_sname, (uintptr_t)buffer[i] - in get_backtrace_info() 304 snprintf(str_buf, ITEM_BUFFER_SIZE, "\t#%02d: <%s+%#x>[%#x] -> %s\n", i, info.dli_sname, in get_backtrace_info()
|
/third_party/musl/porting/liteos_a/user_debug/src/malloc/ |
H A D | backtrace.c | 78 snprintf(str_buffer, STRING_MAX_LEN, " #%02d: <%s+%#x>[%#x] -> %s\n", i, info.dli_sname, in backtrace_symbols()
|
H A D | memory_check.c | 284 printf("\t#%02d: <%s+%#x>[%#x] -> %s\n", i, info.dli_sname, (uintptr_t)buffer[i] - in get_backtrace_info() 289 snprintf(str_buf, ITEM_BUFFER_SIZE, "\t#%02d: <%s+%#x>[%#x] -> %s\n", i, info.dli_sname, in get_backtrace_info()
|
/third_party/skia/third_party/externals/angle2/util/posix/ |
H A D | crash_handler_posix.cpp | 584 if (dladdr(stack[i], &info) && info.dli_sname) 593 abi::__cxa_demangle(info.dli_sname, demangled, &len, &ok);
|
/third_party/node/deps/openssl/openssl/crypto/dso/ |
H A D | dso_dlfcn.c | 302 const char *dli_sname; member
|
/third_party/openssl/crypto/dso/ |
H A D | dso_dlfcn.c | 302 const char *dli_sname; member
|
/third_party/musl/porting/linux/user/src/gwp_asan/ |
H A D | gwp_asan.c | 50 const char *dli_sname;
member
|
/third_party/musl/src/gwp_asan/linux/ |
H A D | gwp_asan.c | 50 const char *dli_sname;
member
|
/third_party/rust/crates/libc/src/unix/newlib/ |
H A D | mod.rs | 204 pub dli_sname: *const ::c_char,
|
/third_party/musl/porting/liteos_a/user/ldso/ |
H A D | dynlink.c | 2306 info->dli_sname = 0; in dladdr() 2313 info->dli_sname = strings + bestsym->st_name; in dladdr()
|
/third_party/musl/porting/liteos_a/user_debug/ldso/ |
H A D | dynlink.c | 2305 info->dli_sname = 0; in dladdr() 2312 info->dli_sname = strings + bestsym->st_name; in dladdr()
|