/external/elfutils/tests/ |
D | backtrace-subr.sh | 101 testfiles backtrace.$arch.{exec,core} 102 tempfiles backtrace.$arch.{bt,err} 103 echo ./backtrace ./backtrace.$arch.{exec,core} 104 …testrun ${abs_builddir}/backtrace -e ./backtrace.$arch.exec --core=./backtrace.$arch.core 1>backtr… 105 cat backtrace.$arch.{bt,err} 106 check_unsupported backtrace.$arch.err backtrace.$arch.core 107 check_all backtrace.$arch.{bt,err} backtrace.$arch.core 117 …(set +ex; testrun ${abs_builddir}/backtrace --backtrace-exec=${abs_builddir}/$child 1>$child.bt 2>… 148 …(set +ex; testrun ${abs_builddir}/backtrace -e ${abs_builddir}/$child --core=$core 1>$core.bt 2>$c…
|
D | Makefile.am | 51 dwfl-report-elf-align varlocs backtrace backtrace-child \ program 52 backtrace-data backtrace-dwarf debuglink debugaltlink \ 62 check_PROGRAMS += backtrace-child-biarch 66 backtrace-child-biarch$(EXEEXT): backtrace-child.c 112 run-backtrace-native.sh run-backtrace-data.sh run-backtrace-dwarf.sh \ 113 run-backtrace-native-biarch.sh run-backtrace-native-core.sh \ 114 run-backtrace-native-core-biarch.sh run-backtrace-core-x86_64.sh \ 115 run-backtrace-core-x32.sh \ 116 run-backtrace-core-i386.sh run-backtrace-core-ppc.sh \ 117 run-backtrace-core-s390x.sh run-backtrace-core-s390.sh \ [all …]
|
D | ChangeLog | 113 * run-backtrace-core-sparc.sh: New file. 114 * backtrace.sparc.core.bz2: New file. 115 * backtrace.sparc.exec.bz2: New file. 117 (TESTS): Added run-backtrace-core-sparc.sh. 122 * run-backtrace-demangle.sh: Disable valgrind. 172 * Makefile.am (backtrace-child-biarch): Add AM_V_CC silencer. 251 * tests/backtrace-data.c: Reduce scope of some includes to match their 253 * tests/backtrace.c: Likewise. 263 * backtrace-subr.sh (check_native_core): Notice core file couldn't be 267 * run-backtrace-demangle.sh: Likewise. [all …]
|
D | run-backtrace-native-core.sh | 18 . $srcdir/backtrace-subr.sh 20 check_native_core backtrace-child
|
D | run-backtrace-native.sh | 18 . $srcdir/backtrace-subr.sh 20 check_native backtrace-child
|
D | run-backtrace-native-biarch.sh | 23 . $srcdir/backtrace-subr.sh 25 check_native backtrace-child-biarch
|
D | run-backtrace-native-core-biarch.sh | 23 . $srcdir/backtrace-subr.sh 25 check_native_core backtrace-child-biarch
|
D | run-backtrace-dwarf.sh | 18 . $srcdir/backtrace-subr.sh 27 (set +ex; testrun ${abs_builddir}/backtrace-dwarf 1>dwarf.bt 2>dwarf.err; true)
|
D | run-backtrace-data.sh | 18 . $srcdir/backtrace-subr.sh 25 (set +ex; testrun ${abs_builddir}/backtrace-data 1>data.bt 2>data.err; true)
|
D | run-backtrace-demangle.sh | 23 . $srcdir/backtrace-subr.sh 25 child=testfile-backtrace-demangle
|
/external/e2fsprogs/debian/scripts/ |
D | test-backtrace | 8 cat > /tmp/backtrace$$.c << EOF 17 frames = backtrace(stack_syms, 32); 22 if ! cc -o /tmp/backtrace$$ /tmp/backtrace$$.c; then 26 if ! ldd /tmp/backtrace$$ > /tmp/backtrace$$.ldd 2>&1 ; then 30 grep -q /usr/lib /tmp/backtrace$$.ldd 33 /bin/rm -f /tmp/backtrace$$*
|
/external/libchrome/base/trace_event/ |
D | heap_profiler_allocation_context.cc | 22 for (size_t i = 0; i < arraysize(ctx.backtrace.frames); i++) in Empty() 23 ctx.backtrace.frames[i] = nullptr; in Empty() 37 return (lhs.backtrace == rhs.backtrace) && (lhs.type_name == rhs.type_name); in operator ==() 47 size_t hash<Backtrace>::operator()(const Backtrace& backtrace) const { in operator ()() 49 std::string(reinterpret_cast<const char*>(backtrace.frames), in operator ()() 50 sizeof(backtrace.frames))); in operator ()() 54 size_t backtrace_hash = hash<Backtrace>()(ctx.backtrace); in operator ()()
|
D | heap_profiler_allocation_context_tracker_unittest.cc | 32 auto actual = std::begin(ctx.backtrace.frames); in AssertBacktraceEquals() 33 auto actual_bottom = std::end(ctx.backtrace.frames); in AssertBacktraceEquals() 51 for (StackFrame frame : ctx.backtrace.frames) in AssertBacktraceEmpty() 213 ASSERT_EQ(kCupcake, ctx.backtrace.frames[0]); in TEST_F() 214 ASSERT_EQ(kFroyo, ctx.backtrace.frames[11]); in TEST_F() 219 ASSERT_EQ(kCupcake, ctx.backtrace.frames[0]); in TEST_F() 220 ASSERT_EQ(kFroyo, ctx.backtrace.frames[11]); in TEST_F()
|
D | heap_profiler_allocation_context.h | 59 Backtrace backtrace; member 87 size_t operator()(const base::trace_event::Backtrace& backtrace) const;
|
D | heap_profiler_allocation_context_tracker.cc | 96 auto dst = std::begin(ctx.backtrace.frames); in GetContextSnapshot() 98 auto dst_end = std::end(ctx.backtrace.frames); in GetContextSnapshot()
|
/external/v8/test/mjsunit/ |
D | debug-backtrace.js | 92 var backtrace; 105 backtrace = response.body(); 106 assertEquals(0, backtrace.fromFrame); 107 assertEquals(4, backtrace.toFrame); 108 assertEquals(4, backtrace.totalFrames); 109 var frames = backtrace.frames; 128 backtrace = response.body(); 129 assertEquals(1, backtrace.fromFrame); 130 assertEquals(3, backtrace.toFrame); 131 assertEquals(4, backtrace.totalFrames); [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_debug_stack.c | 41 debug_backtrace_capture(struct debug_stack_frame *backtrace, in debug_backtrace_capture() argument 76 backtrace[i++].function = frame_pointer[1]; in debug_backtrace_capture() 94 backtrace[i++].function = NULL; in debug_backtrace_capture() 101 debug_backtrace_dump(const struct debug_stack_frame *backtrace, in debug_backtrace_dump() argument 107 if(!backtrace[i].function) in debug_backtrace_dump() 109 debug_symbol_print(backtrace[i].function); in debug_backtrace_dump()
|
D | u_debug_stack.h | 52 debug_backtrace_capture(struct debug_stack_frame *backtrace, 57 debug_backtrace_dump(const struct debug_stack_frame *backtrace,
|
D | u_debug_memory.c | 61 struct debug_stack_frame backtrace[DEBUG_MEMORY_STACK]; member 132 debug_backtrace_capture(hdr->backtrace, 0, DEBUG_MEMORY_STACK); in debug_malloc() 296 debug_backtrace_dump(hdr->backtrace, DEBUG_MEMORY_STACK); in debug_memory_end()
|
/external/libunwind/doc/ |
D | unw_backtrace.tex | 8 …rger-Tang}{Programming Library}{unw\_backtrace}unw\_backtrace -- return backtrace for the calling … 19 \Type{int} \Func{backtrace}(\Type{void~**}\Var{buffer}, \Type{int}~\Var{size});\\ 23 \Func{unw\_backtrace}() is a convenient routine for obtaining the backtrace for 28 called \Func{backtrace}(). The prototype for this function is usually obtained 30 \Func{backtrace}() is not provided by \Prog{libunwind}. \Prog{libunwind} weakly 31 aliases \Func{backtrace}() to \Func{unw\_backtrace}(), so when a program 32 calling \Func{backtrace}() is linked against \Prog{libunwind}, it may end up
|
/external/v8/test/mjsunit/regress/ |
D | regress-1081309.js | 78 var backtrace = response.body(); 79 assertEquals(2, backtrace.totalFrames); 80 assertEquals(2, backtrace.frames.length); 82 assertEquals("g", response.lookup(backtrace.frames[0].func.ref).name); 83 assertEquals("", response.lookup(backtrace.frames[1].func.ref).name);
|
/external/libunwind_llvm/test/ |
D | libunwind_01.pass.cpp | 4 void backtrace(int lower_bound) { in backtrace() function 25 backtrace(i); in test1() 29 backtrace(i); in test2() 34 backtrace(i); in test3()
|
/external/autotest/client/tools/ |
D | crash_handler.py | 145 backtrace = commands.getoutput(gdb_cmd) 147 backtrace = backtrace.decode('utf-8', 'ignore') 150 backtrace = ("Could not determine backtrace for core file %s" % path) 163 report += "Program backtrace:\n%s\n" % backtrace
|
/external/elfutils/ |
D | .gitignore | 98 /tests/backtrace 99 /tests/backtrace-child 100 /tests/backtrace-data 101 /tests/backtrace-dwarf
|
/external/vboot_reference/firmware/stub/ |
D | vboot_api_stub_sf.c | 38 int levels = backtrace(buffer, MAX_STACK_LEVELS); in print_stacktrace() 60 node->bt_levels = backtrace(node->bt_buffer, MAX_STACK_LEVELS); in VbExMalloc()
|