HomeSort by relevance Sort by last modified time
    Searched full:backtrace (Results 151 - 175 of 464) sorted by null

1 2 3 4 5 67 8 91011>>

  /system/core/debuggerd/libdebuggerd/test/
log_fake.cpp 26 class Backtrace;
  /external/clang/include/clang/Basic/
DiagnosticOptions.def 81 /// Limit depth of macro expansion backtrace.
83 /// Limit depth of instantiation backtrace.
85 /// Limit depth of constexpr backtrace.
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CrashRecoveryContext.h 77 /// the backtrace of the crash on failures.
92 /// \brief Return a string containing the backtrace where the crash was
93 /// detected; or empty if the backtrace wasn't recovered.
  /system/core/libbacktrace/
BacktraceMap.cpp 17 #define LOG_TAG "backtrace-map"
27 #include <backtrace/backtrace_constants.h>
28 #include <backtrace/BacktraceMap.h>
BacktraceOffline.cpp 40 #include <backtrace/Backtrace.h>
41 #include <backtrace/BacktraceMap.h>
112 BacktraceOffline* backtrace = reinterpret_cast<BacktraceOffline*>(arg); local
113 bool result = backtrace->FindProcInfo(addr_space, ip, proc_info, need_unwind_info);
128 BacktraceOffline* backtrace = reinterpret_cast<BacktraceOffline*>(arg); local
130 size_t read_size = backtrace->Read(addr, reinterpret_cast<uint8_t*>(value), sizeof(unw_word_t));
142 BacktraceOffline* backtrace = reinterpret_cast<BacktraceOffline*>(arg); local
144 bool result = backtrace->ReadReg(unwind_reg, &reg_value);
882 Backtrace* Backtrace::CreateOffline(pid_t pid, pid_t tid, BacktraceMap* map
    [all...]
BacktraceCurrent.cpp 31 #include <backtrace/Backtrace.h>
32 #include <backtrace/BacktraceMap.h>
  /external/swiftshader/third_party/LLVM/lib/Support/Unix/
Signals.inc 21 # include <execinfo.h> // For backtrace().
209 // On glibc systems we have the 'backtrace' function, which works nicely, but
214 // Use backtrace() to output a backtrace on Linux systems with glibc.
215 int depth = backtrace(StackTrace,
  /bionic/libc/malloc_debug/tests/
malloc_debug_unit_tests.cpp 277 Init("guard backtrace fill expand_alloc free_track leak_track");
392 expected_log += "6 malloc_debug Backtrace at time of failure:\n";
473 expected_log += "6 malloc_debug Backtrace at time of failure:\n";
505 expected_log += "6 malloc_debug Backtrace at time of failure:\n";
540 expected_log += "6 malloc_debug Backtrace at time of failure:\n";
550 expected_log += "6 malloc_debug Backtrace at time of failure:\n";
560 expected_log += "6 malloc_debug Backtrace at time of failure:\n";
602 Init("leak_track backtrace");
629 expected_log += "6 malloc_debug Backtrace at time of allocation:\n";
639 expected_log += "6 malloc_debug Backtrace at time of allocation:\n"
    [all...]
log_fake.cpp 26 class Backtrace;
  /external/jemalloc/include/jemalloc/internal/
prof.h 20 * Hard limit on stack backtrace depth. The version of prof_backtrace() that
22 * of backtrace frame handlers, and should be kept in sync with this setting.
60 /* Backtrace, stored as len program counters. */
168 /* Associated backtrace. */
171 /* Backtrace vector, variable size, referred to by bt. */
237 /* Backtrace vector, used for calls to prof_backtrace(). */
512 * backtrace was captured for this allocation, even
  /system/core/debuggerd/
crash_dump.cpp 48 #include "backtrace.h"
304 // Collect the backtrace map, open files, and process/thread names, while we still have caps.
307 LOG(FATAL) << "failed to create backtrace map";
357 bool backtrace = false; local
362 // 1: dump backtrace
365 backtrace = true;
373 if (backtrace) {
  /external/deqp/framework/qphelper/
qpCrashHandler.c 338 /* Write backtrace. */
359 writeInfo(userPtr, "Backtrace:\n");
540 char tmpFileName[] = "backtrace-XXXXXX";
545 writeInfoFormat(writeInfo, userPtr, "Failed to create tmpfile '%s' for the backtrace %s.", tmpFileName, strerror(errno));
557 symbolCount = backtrace(symbols, DE_LENGTH_OF_ARRAY(symbols));
618 writeInfoFormat(writeInfo, userPtr, "Unexpected EOF reading backtrace file '%s'", tmpFileName);
  /external/llvm/lib/Support/Unix/
Signals.inc 28 # include <execinfo.h> // For backtrace().
393 // On glibc systems we have the 'backtrace' function, which works nicely, but
400 // Use backtrace() to output a backtrace on Linux systems with glibc.
402 depth = backtrace(StackTrace, static_cast<int>(array_lengthof(StackTrace)));
405 // Try _Unwind_Backtrace() if backtrace() failed.
  /external/v8/src/base/debug/
stack_trace_posix.cc 297 // and even backtrace() can call malloc(), leading to hangs.
313 // at ../sysdeps/x86_64/../ia64/backtrace.c:53
317 // at ../sysdeps/x86_64/../ia64/backtrace.c:104
339 // Avoid hangs during backtrace initialization, see above.
369 // Though the backtrace API man page does not list any possible negative
371 count_ = static_cast<size_t>(backtrace(trace_, arraysize(trace_)));
stack_trace_win.cc 96 // to the ostream os. The format for each line of the backtrace is:
132 // Output the backtrace line.
234 << "). Dumping unresolved backtrace:\n";
  /external/libunwind/tests/
test-flush-cache.c 31 #define UNW_LOCAL_ONLY /* must define this for consistency with backtrace() */
43 printf ("First backtrace:\n");
52 printf ("\nSecond backtrace:\n");
test-ptrace.c 192 ++optind, trace_mode = INSTRUCTION; /* backtrace at each insn */
194 ++optind, trace_mode = SYSCALL; /* backtrace at each syscall */
196 /* Execute until raise(SIGUSR1), then backtrace at each insn
  /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/util/logging/
SimpleFormatter.java 96 * associated with the log record and its backtrace
115 * and its backtrace ({@code 6$}), if any:
127 * the throwable and its backtrace:
  /art/compiler/
compiler.h 99 * @note This is used for backtrace information in generated code.
  /bionic/libc/arch-arm/krait/bionic/
memset.S 44 // Preserve lr for backtrace.
  /bionic/libc/malloc_debug/
malloc_debug.cpp 41 #include "backtrace.h"
128 error_log("Backtrace at time of failure:");
165 if (g_debug->config().options & BACKTRACE) {
167 if (g_debug->backtrace->enabled()) {
207 // Always enable the backtrace code since we will use it in a number
254 if (!(g_debug->config().options & BACKTRACE)) {
256 "set the option 'backtrace'.");
368 if (g_debug->config().options & BACKTRACE) {
723 if (g_debug->config().options & BACKTRACE) {
malloc_debug.h 41 // BacktraceHeader (Optional: For the allocation backtrace)
  /external/clang/test/Misc/
diag-macro-backtrace.c 1 // RUN: not %clang -fsyntax-only -fmacro-backtrace-limit=0 %s 2>&1 | FileCheck %s
  /external/jemalloc/test/unit/
prof_active.c 91 "%s():%d: Unexpected backtrace count", func, line);

Completed in 881 milliseconds

1 2 3 4 5 67 8 91011>>