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

12

/freebsd-11.0-release/lib/libexecinfo/
H A DMakefile12 SRCS= backtrace.c symtab.c unwind.c
16 MAN= backtrace.3
18 MLINKS+= backtrace.3 backtrace_symbols.3
19 MLINKS+= backtrace.3 backtrace_symbols_fmt.3
20 MLINKS+= backtrace.3 backtrace_symbols_fd.3
21 MLINKS+= backtrace.3 backtrace_symbols_fd_fmt.3
/freebsd-11.0-release/contrib/ntp/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-11.0-release/contrib/libexecinfo/
H A Dexecinfo.h38 size_t backtrace(void **, size_t);
H A Dbuiltin.c55 backtrace(void **trace, size_t len) function
H A Dunwind.c49 /* Skip backtrace frame */
59 backtrace(void **arr, size_t len) function
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DQueueItem.h108 /// Get an extended backtrace thread for this queue item, if available
110 /// If the backtrace/thread information was collected when this item
114 /// The type of extended backtrace being requested, e.g. "libdispatch"
167 SetEnqueueingBacktrace (std::vector<lldb::addr_t> backtrace) argument
169 m_backtrace = backtrace;
219 uint32_t m_stop_id; // indicates when this backtrace was recorded in time
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonExceptionState.cpp128 std::string backtrace = ReadBacktrace(); local
144 // If we were able to read the backtrace, just append it.
145 error_stream << backtrace << "\n"; local
150 // obtain the backtrace.
152 error_stream << "An error occurred while retrieving the backtrace: " << bt_error.GetString() << "\n";
160 std::string retval("backtrace unavailable");
/freebsd-11.0-release/contrib/wpa/src/utils/
H A Dtrace.h32 (ptr)->btrace_num = backtrace((ptr)->btrace, WPA_TRACE_LEN)
H A Dtrace.c264 btrace_num = backtrace(btrace_res, len);
/freebsd-11.0-release/usr.sbin/ntp/libntp/
H A DMakefile53 backtrace-emptytbl.c \
54 backtrace.c \
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Utility/
H A DSharingPtr.cpp56 const int count = ::backtrace (frames, llvm::array_lengthof(frames));
/freebsd-11.0-release/crypto/heimdal/lib/krb5/
H A Dmisc.c102 int i, frames = backtrace(stack, sizeof(stack) / sizeof(stack[0]));
/freebsd-11.0-release/contrib/netbsd-tests/lib/libexecinfo/
H A Dt_backtrace.c80 nptrs = backtrace(buffer, __arraycount(buffer));
88 printf("backtrace is:\n");
/freebsd-11.0-release/contrib/ntp/libntp/
H A DMakefile.am10 $(srcdir)/../lib/isc/backtrace-emptytbl.c \
11 $(srcdir)/../lib/isc/backtrace.c \
H A DMakefile.in164 $(srcdir)/../lib/isc/backtrace-emptytbl.c \
165 $(srcdir)/../lib/isc/backtrace.c \
191 backtrace-emptytbl.$(OBJEXT) backtrace.$(OBJEXT) \
248 $(srcdir)/../lib/isc/backtrace-emptytbl.c \
249 $(srcdir)/../lib/isc/backtrace.c \
616 $(srcdir)/../lib/isc/backtrace-emptytbl.c \
617 $(srcdir)/../lib/isc/backtrace.c \
787 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/backtrace-emptytbl.Po@am__quote@
788 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/backtrace
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_unwind_linux_libcdep.cc43 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
H A Dsanitizer_common_interceptors.inc3268 INTERCEPTOR(int, backtrace, void **buffer, int size) {
3270 COMMON_INTERCEPTOR_ENTER(ctx, backtrace, buffer, size);
3274 int res = REAL(backtrace)(buffer, size);
3297 COMMON_INTERCEPT_FUNCTION(backtrace); \
/freebsd-11.0-release/contrib/ntp/lib/isc/win32/
H A Dlibisc.mak119 -@erase "$(INTDIR)\backtrace.obj"
120 -@erase "$(INTDIR)\backtrace-emptytbl.obj"
241 "$(INTDIR)\backtrace.obj" \
242 "$(INTDIR)\backtrace-emptytbl.obj" \
314 -@erase "$(INTDIR)\backtrace.obj"
315 -@erase "$(INTDIR)\backtrace-emptytbl.obj"
316 -@erase "$(INTDIR)\backtrace.sbr"
317 -@erase "$(INTDIR)\backtrace-emptytbl.sbr"
510 "$(INTDIR)\backtrace.sbr" \
511 "$(INTDIR)\backtrace
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Support/Unix/
H A DSignals.inc28 # include <execinfo.h> // For backtrace().
315 // On glibc systems we have the 'backtrace' function, which works nicely, but
320 // Use backtrace() to output a backtrace on Linux systems with glibc.
321 int depth = backtrace(StackTrace,
/freebsd-11.0-release/contrib/gcclibs/libmudflap/
H A Dmf-runtime.c299 __mf_opts.backtrace = 4;
421 {"backtrace",
423 read_integer_option, 0, &__mf_opts.backtrace},
1056 if (__mf_opts.backtrace > 0 && (type == __MF_TYPE_HEAP || type == __MF_TYPE_HEAP_I))
1296 if (__mf_opts.backtrace > 0 && old_obj->type == __MF_TYPE_HEAP)
1335 if (__mf_opts.backtrace > 0)
1708 if (__mf_opts.backtrace > 0)
1732 if (__mf_opts.backtrace > 0)
1870 unsigned pc_array_size = __mf_opts.backtrace + guess_omit_levels;
1880 pc_array_size = backtrace (pc_arra
[all...]
H A Dmf-impl.h164 unsigned backtrace; member in struct:__mf_options
H A Dconfigure3787 for ac_func in backtrace backtrace_symbols gettimeofday signal
/freebsd-11.0-release/contrib/groff/src/roff/troff/
H A Dinput.cpp220 virtual void backtrace() {} function in class:input_iterator
282 void backtrace();
392 void file_iterator::backtrace() function in class:file_iterator
394 errprint("%1:%2: backtrace: %3 `%1'\n", filename, lineno,
421 static void backtrace();
649 void input_stack::backtrace() function in class:input_stack
653 // only backtrace down to (not including) the topmost file
657 p->backtrace();
663 p->backtrace();
3351 void backtrace();
3458 void string_iterator::backtrace() function in class:string_iterator
[all...]

Completed in 173 milliseconds

12