Home | History | Annotate | Download | only in backtrace

Lines Matching refs:Backtrace

26 #include <backtrace/backtrace_constants.h>
27 #include <backtrace/BacktraceMap.h>
79 class Backtrace {
81 // Create the correct Backtrace object based on what is to be unwound.
82 // If pid < 0 or equals the current pid, then the Backtrace object
84 // If pid < 0 or equals the current pid and tid >= 0, then the Backtrace
86 // If pid >= 0 and tid < 0, then the Backtrace object corresponds to a
91 static Backtrace* Create(pid_t pid, pid_t tid, BacktraceMap* map = NULL);
93 // Create an offline Backtrace object that can be used to do an unwind without a process
96 // that subsequent calls to create offline Backtrace objects will continue to use the same
98 static Backtrace* CreateOffline(pid_t pid, pid_t tid, BacktraceMap* map,
101 virtual ~Backtrace();
122 // Create a string representing the formatted line of backtrace information
153 Backtrace(pid_t pid, pid_t tid, BacktraceMap* map);