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

  /system/core/libbacktrace/
Backtrace.cpp 27 #include <backtrace/Backtrace.h>
28 #include <backtrace/BacktraceMap.h>
38 // Backtrace functions.
40 Backtrace::Backtrace(pid_t pid, pid_t tid, BacktraceMap* map)
48 Backtrace::~Backtrace() {
55 std::string Backtrace::GetFunctionName(uintptr_t pc, uintptr_t* offset) {
60 bool Backtrace::VerifyReadWordArgs(uintptr_t ptr, word_t* out_value)
    [all...]
  /external/libchrome/base/trace_event/
heap_profiler_allocation_context.h 22 // The backtrace in the allocation context is a snapshot of the stack. For now,
25 // case, |Backtrace| and |AllocationContextTracker::GetContextSnapshot| might
28 // The number of stack frames stored in the backtrace is a trade off between
40 struct BASE_EXPORT Backtrace {
41 // Unused backtrace frames are filled with nullptr frames. If the stack is
48 bool BASE_EXPORT operator==(const Backtrace& lhs, const Backtrace& rhs);
56 // An allocation context with empty backtrace and unknown type.
59 Backtrace backtrace; member in struct:base::trace_event::AllocationContext
    [all...]
  /system/core/libmemunreachable/include/memunreachable/
memunreachable.h 44 struct Backtrace {
49 } backtrace; member in struct:Leak
  /art/runtime/
runtime_linux.cc 41 struct Backtrace {
43 explicit Backtrace(void* raw_context) : raw_context_(raw_context) {}
334 Backtrace thread_backtrace(raw_context);
346 << "Backtrace:\n" << Dumpable<Backtrace>(thread_backtrace);
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 34 std::string Backtrace;
67 // FIXME: Stash the backtrace.
178 // TODO: We can capture the stack backtrace here and store it on the
342 return CRC->Backtrace;
  /system/core/include/backtrace/
Backtrace.h 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 sam
    [all...]

Completed in 424 milliseconds