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

1 2 3 4 5 6 7 8 91011>>

  /external/libunwind/src/unwind/
BacktraceWrapper.c 2 * accidentally includes backtrace.o and Backtrace.o causing duplicate
5 #include "Backtrace.c"
  /external/e2fsprogs/debian/scripts/
test-backtrace 3 # Test to see if backtrace requires a library in /usr/lib
4 # Returns true if the backtrace command works and requires a library in /usr/lib
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$$
    [all...]
  /external/valgrind/memcheck/tests/
deep-backtrace.stderr.exp 2 at 0x........: f1 (deep-backtrace.c:1)
3 by 0x........: f2 (deep-backtrace.c:2)
4 by 0x........: f3 (deep-backtrace.c:3)
5 by 0x........: f4 (deep-backtrace.c:4)
6 by 0x........: f5 (deep-backtrace.c:5)
7 by 0x........: f6 (deep-backtrace.c:6)
8 by 0x........: f7 (deep-backtrace.c:7)
9 by 0x........: f8 (deep-backtrace.c:8)
10 by 0x........: f9 (deep-backtrace.c:9)
11 by 0x........: f10 (deep-backtrace.c:10
    [all...]
deep-backtrace.vgtest 1 prog: deep-backtrace
  /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/libchrome/base/trace_event/
heap_profiler_allocation_context.cc 27 Backtrace::Backtrace(): frame_count(0) {}
29 bool operator==(const Backtrace& lhs, const Backtrace& rhs) {
34 bool operator!=(const Backtrace& lhs, const Backtrace& rhs) {
40 AllocationContext::AllocationContext(const Backtrace& backtrace,
42 : backtrace(backtrace), type_name(type_name) {
    [all...]
  /frameworks/native/opengl/libs/EGL/
CallStack.h 20 #include <backtrace/Backtrace.h>
28 std::unique_ptr<Backtrace> backtrace(
29 Backtrace::Create(BACKTRACE_CURRENT_PROCESS, BACKTRACE_CURRENT_THREAD));
30 if (backtrace->Unwind(2)) {
31 for (size_t i = 0, c = backtrace->NumFrames(); i < c; i++) {
33 backtrace->FormatFrameData(i).c_str());
  /system/core/libbacktrace/
backtrace_test.cpp 43 #include <backtrace/Backtrace.h>
44 #include <backtrace/BacktraceMap.h>
80 Backtrace* backtrace; member in struct:dump_thread_t
91 static std::string DumpFrames(Backtrace* backtrace) {
92 if (backtrace->NumFrames() == 0) {
97 for (size_t i = 0; i < backtrace->NumFrames(); i++) {
98 frame += " " + backtrace->FormatFrameData(i) + '\n'
    [all...]
BacktracePtrace.h 23 #include <backtrace/Backtrace.h>
27 class BacktracePtrace : public Backtrace {
29 BacktracePtrace(pid_t pid, pid_t tid, BacktraceMap* map) : Backtrace(pid, tid, map) {}
  /external/libunwind/doc/
unw_backtrace.man 16 \-\- return backtrace for the calling program
33 backtrace(void **buffer,
41 is a convenient routine for obtaining the backtrace for
48 called backtrace().
52 backtrace()
56 aliases backtrace()
59 calling backtrace()
  /system/core/debuggerd/libdebuggerd/
backtrace.cpp 34 #include <backtrace/Backtrace.h>
37 #include "backtrace.h"
47 _LOG(log, logtype::BACKTRACE, "\n\n----- pid %d at %s -----\n", pid, timestr);
50 _LOG(log, logtype::BACKTRACE, "Cmd line: %s\n", process_name);
52 _LOG(log, logtype::BACKTRACE, "ABI: '%s'\n", ABI_STRING);
56 _LOG(log, logtype::BACKTRACE, "\n----- end %d -----\n", pid);
60 _LOG(log, logtype::BACKTRACE, "\n\"%s\" sysTid=%d\n", thread_name, tid);
67 std::unique_ptr<Backtrace> backtrace(Backtrace::Create(pid, tid, map))
    [all...]
elf_utils.cpp 27 #include <backtrace/Backtrace.h>
36 Backtrace* backtrace, uintptr_t base_addr, uint8_t* e_ident, std::string* build_id) {
42 if (backtrace->Read(base_addr + EI_NIDENT, reinterpret_cast<uint8_t*>(&hdr) + EI_NIDENT,
49 if (backtrace->Read(base_addr + hdr.e_phoff + i * hdr.e_phentsize,
59 if (backtrace->Read(addr, reinterpret_cast<uint8_t*>(&nhdr), sizeof(nhdr)) != sizeof(nhdr)) {
72 if (backtrace->Read(addr, build_id_data, nhdr.n_descsz) != nhdr.n_descsz) {
98 bool elf_get_build_id(Backtrace* backtrace, uintptr_t addr, std::string* build_id)
    [all...]
  /system/core/debuggerd/libdebuggerd/x86/
machine.cpp 24 #include <backtrace/Backtrace.h>
30 void dump_memory_and_code(log_t* log, Backtrace* backtrace) {
32 if (ptrace(PTRACE_GETREGS, backtrace->Tid(), 0, &r) == -1) {
37 dump_memory(log, backtrace, static_cast<uintptr_t>(r.eax), "memory near eax:");
38 dump_memory(log, backtrace, static_cast<uintptr_t>(r.ebx), "memory near ebx:");
39 dump_memory(log, backtrace, static_cast<uintptr_t>(r.ecx), "memory near ecx:");
40 dump_memory(log, backtrace, static_cast<uintptr_t>(r.edx), "memory near edx:");
41 dump_memory(log, backtrace, static_cast<uintptr_t>(r.esi), "memory near esi:")
    [all...]
  /system/core/debuggerd/libdebuggerd/include/
machine.h 22 #include <backtrace/Backtrace.h>
26 void dump_memory_and_code(log_t* log, Backtrace* backtrace);
backtrace.h 28 class Backtrace;
31 // Dumps a backtrace using a format similar to what Dalvik uses so that the result
36 /* Dumps the backtrace in the backtrace data structure to the log. */
37 void dump_backtrace_to_log(Backtrace* backtrace, log_t* log, const char* prefix);
  /system/core/libutils/
CallStack.cpp 27 #include <backtrace/Backtrace.h>
45 std::unique_ptr<Backtrace> backtrace(Backtrace::Create(BACKTRACE_CURRENT_PROCESS, tid));
46 if (!backtrace->Unwind(ignoreDepth)) {
49 for (size_t i = 0; i < backtrace->NumFrames(); i++) {
50 mFrameLines.push_back(String8(backtrace->FormatFrameData(i).c_str()));
  /external/clang/test/Misc/
macro-backtrace.c 19 // RUN: %clang_cc1 -fsyntax-only -fmacro-backtrace-limit 5 %s 2>&1 \
21 // CHECK-LIMIT: macro-backtrace.c:18:7: warning: comparison of distinct pointer types ('int *' and 'float *')
23 // CHECK-LIMIT: macro-backtrace.c:15:19: note: expanded from macro 'M12'
25 // CHECK-LIMIT: macro-backtrace.c:14:19: note: expanded from macro 'M11'
27 // CHECK-LIMIT: note: (skipping 7 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
28 // CHECK-LIMIT: macro-backtrace.c:6:18: note: expanded from macro 'M3'
30 // CHECK-LIMIT: macro-backtrace.c:5:18: note: expanded from macro 'M2'
32 // CHECK-LIMIT: macro-backtrace.c:4:23: note: expanded from macro 'M1'
37 // CHECK-NO-CARETS: macro-backtrace.c:18:7: warning: comparison of distinct pointer types ('int *' and 'float *'
    [all...]
  /external/clang/test/SemaTemplate/
instantiation-depth.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 %s
2 // RUN: %clang -fsyntax-only -Xclang -verify -ftemplate-depth-5 -ftemplate-backtrace-limit=4 %s
3 // RUN: %clang -fsyntax-only -Xclang -verify -ftemplate-depth=5 -ftemplate-backtrace-limit=4 %s
10 // expected-note {{skipping 2 contexts in backtrace}} \
19 // RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 -std=c++11 -DNOEXCEPT %s
27 // expected-note {{skipping 2 contexts in backtrace}} \
  /external/elfutils/tests/
run-backtrace-core-x32.sh 18 . $srcdir/backtrace-subr.sh
20 # backtrace.x32.exec is created by
21 # gcc -mx32 -static -o backtrace.x32.exec backtrace_child-backtrace-child.o -lpthread
22 # backtrace.x32.core was generated by running "backtrace.x32.exec --gencore"
  /prebuilts/abi-dumps/vndk/current/arm/source-based/
libbacktrace.so.lsdump.gz 
  /prebuilts/abi-dumps/vndk/current/arm64/source-based/
libbacktrace.so.lsdump.gz 
  /prebuilts/abi-dumps/vndk/current/mips/source-based/
libbacktrace.so.lsdump.gz 
  /prebuilts/abi-dumps/vndk/current/mips64/source-based/
libbacktrace.so.lsdump.gz 
  /prebuilts/abi-dumps/vndk/current/x86/source-based/
libbacktrace.so.lsdump.gz 
  /prebuilts/abi-dumps/vndk/current/x86_64/source-based/
libbacktrace.so.lsdump.gz 

Completed in 2154 milliseconds

1 2 3 4 5 6 7 8 91011>>