Searched refs:backtrace (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-current/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Dsegv_handler_fuchsia.cpp17 backtrace::PrintBacktrace_t /* PrintBacktrace */,
18 backtrace::SegvBacktrace_t /* SegvBacktrace */,
H A Dsegv_handler.h13 #include "gwp_asan/optional/backtrace.h"
25 gwp_asan::backtrace::PrintBacktrace_t PrintBacktrace,
26 gwp_asan::backtrace::SegvBacktrace_t SegvBacktrace,
H A Dbacktrace_fuchsia.cpp9 #include "gwp_asan/optional/backtrace.h"
14 namespace backtrace { namespace in namespace:gwp_asan
26 } // namespace backtrace
H A Dbacktrace.h1 //===-- backtrace.h ---------------------------------------------*- C++ -*-===//
16 namespace backtrace { namespace in namespace:gwp_asan
18 // This function shall take the backtrace provided in `TraceBuffer`, and print
24 // This format allows the backtrace to be symbolized offline successfully using
34 // Returns a function pointer to a backtrace function that's suitable for
37 // normal backtrace function as the implementation here. On POSIX, SignalContext
50 } // namespace backtrace
H A Dbacktrace_linux_libc.cpp17 #include "gwp_asan/optional/backtrace.h"
25 return backtrace(reinterpret_cast<void **>(TraceBuffer), Size);
28 // We don't need any custom handling for the Segv backtrace - the libc unwinder
60 namespace backtrace { namespace in namespace:gwp_asan
66 } // namespace backtrace
H A Dbacktrace_sanitizer_common.cpp14 #include "gwp_asan/optional/backtrace.h"
82 namespace backtrace { namespace in namespace:gwp_asan
100 } // namespace backtrace
/freebsd-current/lib/libexecinfo/
H A DMakefile12 SRCS= backtrace.c symtab.c unwind.c
17 MAN= backtrace.3
19 MLINKS+= backtrace.3 backtrace_symbols.3
20 MLINKS+= backtrace.3 backtrace_symbols_fmt.3
21 MLINKS+= backtrace.3 backtrace_symbols_fd.3
22 MLINKS+= backtrace.3 backtrace_symbols_fd_fmt.3
/freebsd-current/contrib/ntp/libntp/lib/isc/
H A Dbacktrace-emptytbl.c17 /* $Id: backtrace-emptytbl.c,v 1.3 2009/09/01 20:13:44 each Exp $ */
22 * This file defines an empty (default) symbol table used in backtrace.c
31 #include <isc/backtrace.h>
H A Dassertions.c28 #include <isc/backtrace.h>
H A Dbacktrace.c17 /* $Id: backtrace.c,v 1.3 2009/09/02 23:48:02 tbox Exp $ */
29 #include <isc/backtrace.h>
37 * 1. If the system library supports the "backtrace()" function, use it.
46 * the RBP register in such a case. If the backtrace function itself crashes
48 * --disable-backtrace.
70 * See notes in backtrace.h.
76 * backtrace(3) includes this function itself in the address array,
79 n = backtrace(addrs, maxaddrs);
263 * See notes in backtrace.h.
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DLLDBAssert.cpp24 llvm::StringRef backtrace,
27 llvm::errs() << backtrace; // Backtrace includes a newline.
50 llvm::raw_string_ostream backtrace(buffer);
51 llvm::sys::PrintStackTrace(backtrace);
57 backtrace.str(),
23 DefaultAssertCallback(llvm::StringRef message, llvm::StringRef backtrace, llvm::StringRef prompt) argument
/freebsd-current/contrib/libexecinfo/
H A Dexecinfo.h38 size_t backtrace(void **, size_t);
H A Dunwind.c49 /* Skip backtrace frame */
61 backtrace(void **arr, size_t len) function
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLLDBAssert.h36 llvm::StringRef backtrace,
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DQueueItem.h80 /// Get an extended backtrace thread for this queue item, if available
82 /// If the backtrace/thread information was collected when this item
86 /// The type of extended backtrace being requested, e.g. "libdispatch"
116 void SetEnqueueingBacktrace(std::vector<lldb::addr_t> backtrace) { argument
117 m_backtrace = backtrace;
155 uint32_t m_stop_id; // indicates when this backtrace was recorded in time
/freebsd-current/contrib/wpa/src/utils/
H A Dtrace.h32 (ptr)->btrace_num = backtrace((ptr)->btrace, WPA_TRACE_LEN)
/freebsd-current/lib/libexecinfo/tests/
H A Dsigtramp_test.c29 n = backtrace(addresses, nitems(addresses));
/freebsd-current/contrib/libcbor/test/
H A Dtest_allocator.c35 int frames = backtrace(buffer, 128);
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DSignals.inc51 #include BACKTRACE_HEADER // For backtrace().
714 // On glibc systems we have the 'backtrace' function, which works nicely, but
721 // Use backtrace() to output a backtrace on Linux systems with glibc.
723 depth = backtrace(StackTrace, static_cast<int>(std::size(StackTrace)));
726 // Try _Unwind_Backtrace() if backtrace() failed.
734 // backtrace() for printing a symbolized stack trace.
/freebsd-current/tools/test/stress2/misc/
H A Dsyzkaller9.sh18 # KDB: stack backtrace:
45 // http://syzkaller.backtrace.io:8080/report?id=03a08d05681c3e7f38ab6ab3f0d025105c3dcea3
H A Dsyzkaller8.sh6 # KDB: stack backtrace:
25 // http://syzkaller.backtrace.io:8080/report?id=ba93405590ed607e9b2d65025a44ff60dc6c4bcc
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dmisc.c102 int i, frames = backtrace(stack, sizeof(stack) / sizeof(stack[0]));
/freebsd-current/contrib/netbsd-tests/lib/libexecinfo/
H A Dt_backtrace.c80 nptrs = backtrace(buffer, __arraycount(buffer));
88 printf("backtrace is:\n");
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_unwind_linux_libcdep.cpp45 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
/freebsd-current/sys/contrib/openzfs/lib/libspl/
H A Dassert.c31 #include <sys/backtrace.h>

Completed in 291 milliseconds

12