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

  /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...]
  /external/libunwind_llvm/test/
libunwind_01.pass.cpp 4 void backtrace(int lower_bound) { function
25 backtrace(i);
29 backtrace(i);
34 backtrace(i);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 52 def backtrace!
53 Call.convert_backtrace( backtrace )
  /frameworks/av/media/libmedia/
MemoryLeakTrackUtil.cpp 78 // based on the backtrace.
83 uintptr_t backtrace[]; member in struct:android::AllocEntry
90 oss << backtrace_string(e->backtrace, backtraceSize) << "\n";
  /bionic/libc/malloc_debug/
DebugData.h 67 return reinterpret_cast<BacktraceHeader*>(value + backtrace->alloc_offset());
89 std::unique_ptr<BacktraceData> backtrace; member in class:DebugData
  /system/core/libmemunreachable/include/memunreachable/
memunreachable.h 44 struct Backtrace {
49 } backtrace; member in struct:Leak
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_memory.c 61 struct debug_stack_frame backtrace[DEBUG_MEMORY_STACK]; member in struct:debug_memory_header
132 debug_backtrace_capture(hdr->backtrace, 0, DEBUG_MEMORY_STACK);
296 debug_backtrace_dump(hdr->backtrace, DEBUG_MEMORY_STACK);
  /libcore/ojluni/src/main/java/java/lang/
Throwable.java 120 * Native code saves some indication of the stack backtrace in this slot.
122 private transient volatile Object backtrace; field in class:Throwable
477 * Prints this throwable and its backtrace to the
506 * The backtrace for a throwable with an initialized, non-null cause
507 * should generally include the backtrace for the cause. The format
630 * Prints this throwable and its backtrace to the specified print stream.
705 * Prints this throwable and its backtrace to the specified
773 backtrace != null /* Out of protocol state */ ) {
774 backtrace = nativeFillInStackTrace();
    [all...]
  /system/core/libbacktrace/
BacktraceOffline.cpp 37 #include <backtrace/Backtrace.h>
38 #include <backtrace/BacktraceMap.h>
70 BacktraceOffline* backtrace = reinterpret_cast<BacktraceOffline*>(arg); local
71 bool result = backtrace->FindProcInfo(addr_space, ip, proc_info, need_unwind_info);
86 BacktraceOffline* backtrace = reinterpret_cast<BacktraceOffline*>(arg); local
88 size_t read_size = backtrace->Read(addr, reinterpret_cast<uint8_t*>(value), sizeof(unw_word_t));
100 BacktraceOffline* backtrace = reinterpret_cast<BacktraceOffline*>(arg); local
102 bool result = backtrace->ReadReg(unwind_reg, &reg_value);
757 Backtrace* Backtrace::CreateOffline(pid_t pid, pid_t tid, BacktraceMap* map
    [all...]
backtrace_test.cpp 42 #include <backtrace/Backtrace.h>
43 #include <backtrace/BacktraceMap.h>
76 Backtrace* backtrace; member in struct:dump_thread_t
94 std::string DumpFrames(Backtrace* backtrace) {
95 if (backtrace->NumFrames() == 0) {
100 for (size_t i = 0; i < backtrace->NumFrames(); i++) {
101 frame += " " + backtrace->FormatFrameData(i) + '\n'
1429 Backtrace* backtrace = Backtrace::Create(pid, tid); local
1440 Backtrace* backtrace = Backtrace::Create(pid, tid); local
    [all...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 888 * intptr_t backtrace[32]
890 * "size" is the size of the allocation, "backtrace" is a fixed-size
892 * allocations with the exact same size and backtrace.
924 fprintf(fp, "WARNING: mismatched backtrace sizes (%zu vs. %d)\n",
937 intptr_t* backtrace = (intptr_t*) (ptr + sizeof(size_t) * 2); local
944 if (backtrace[bt] == 0) {
948 fprintf(fp, " %016" PRIxPTR, backtrace[bt]);
950 fprintf(fp, " %08" PRIxPTR, backtrace[bt]);
    [all...]
  /art/runtime/gc/
heap.cc 4081 uintptr_t backtrace[kMaxFrames]; local
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 18109 # define backtrace macro
    [all...]
  /external/sqlite/dist/
sqlite3.c 18109 # define backtrace macro
    [all...]

Completed in 1253 milliseconds