HomeSort by relevance Sort by last modified time
    Searched defs:Backtrace (Results 1 - 8 of 8) sorted by null

  /external/lldb/source/Utility/
SharingPtr.cpp 23 class Backtrace
26 Backtrace ();
28 ~Backtrace ();
42 Backtrace::Backtrace () : m_frames()
46 Backtrace::~Backtrace ()
51 Backtrace::GetFrames ()
54 const int count = ::backtrace (frames, sizeof(frames)/sizeof(void*));
60 Backtrace::Dump () cons
    [all...]
  /system/core/libbacktrace/
BacktraceImpl.cpp 27 #include <backtrace/Backtrace.h>
28 #include <backtrace/BacktraceMap.h>
35 // Backtrace functions.
37 Backtrace::Backtrace(BacktraceImpl* impl, pid_t pid, BacktraceMap* map)
47 Backtrace::~Backtrace() {
59 bool Backtrace::Unwind(size_t num_ignore_frames, ucontext_t* ucontext) {
66 std::string Backtrace::GetFunctionName(uintptr_t pc, uintptr_t* offset)
    [all...]
  /art/runtime/
runtime_linux.cc 34 struct Backtrace {
297 Backtrace thread_backtrace;
309 << "Backtrace:\n" << Dumpable<Backtrace>(thread_backtrace);
  /system/core/include/backtrace/
Backtrace.h 26 #include <backtrace/backtrace_constants.h>
27 #include <backtrace/BacktraceMap.h>
58 class Backtrace {
60 // Create the correct Backtrace object based on what is to be unwound.
61 // If pid < 0 or equals the current pid, then the Backtrace object
63 // If pid < 0 or equals the current pid and tid >= 0, then the Backtrace
65 // If pid >= 0 and tid < 0, then the Backtrace object corresponds to a
70 static Backtrace* Create(pid_t pid, pid_t tid, BacktraceMap* map = NULL);
72 virtual ~Backtrace();
87 // Create a string representing the formatted line of backtrace informatio
    [all...]
  /external/lldb/source/Host/freebsd/
Host.cpp 90 Host::Backtrace (Stream &strm, uint32_t max_frames)
92 char backtrace_path[] = "/tmp/lldb-backtrace-tmp-XXXXXX";
97 int count = ::backtrace (&frame_buffer[0], frame_buffer.size());
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 30 std::string Backtrace;
58 // FIXME: Stash the backtrace.
168 // TODO: We can capture the stack backtrace here and store it on the
332 return CRC->Backtrace;
  /external/lldb/source/Host/linux/
Host.cpp 468 Host::Backtrace (Stream &strm, uint32_t max_frames)
473 int num_frames = ::backtrace (&frame_buffer[0], frame_buffer.size());
477 // Start at 1 to skip the "Host::Backtrace" frame
  /external/lldb/source/Host/common/
Host.cpp 537 Host::Backtrace (Stream &strm, uint32_t max_frames)
539 // TODO: Is there a way to backtrace the current process on other systems?
    [all...]

Completed in 499 milliseconds