HomeSort by relevance Sort by last modified time
    Searched refs:Stackwalker (Results 1 - 25 of 29) sorted by null

1 2

  /external/google-breakpad/src/processor/
stackwalker.cc 30 // stackwalker.cc: Generic stackwalker.
32 // See stackwalker.h for documentation.
36 #include "google_breakpad/processor/stackwalker.h"
61 const int Stackwalker::kRASearchWords = 30;
63 uint32_t Stackwalker::max_frames_ = 1024;
64 bool Stackwalker::max_frames_set_ = false;
66 uint32_t Stackwalker::max_frames_scanned_ = 1024;
68 Stackwalker::Stackwalker(const SystemInfo* system_info
    [all...]
stackwalker_address_list.h 30 // stackwalker_address_list.h: a pseudo stackwalker.
42 #include "google_breakpad/processor/stackwalker.h"
48 class StackwalkerAddressList : public Stackwalker {
52 // Stackwalker constructor.
59 // Implementation of Stackwalker.
stackwalker_ppc.h 30 // stackwalker_ppc.h: ppc-specific stackwalker.
44 #include "google_breakpad/processor/stackwalker.h"
50 class StackwalkerPPC : public Stackwalker {
55 // to the base Stackwalker constructor.
63 // Implementation of Stackwalker, using ppc context (stack pointer in %r1,
stackwalker_ppc64.h 30 // stackwalker_ppc64.h: ppc-specific stackwalker.
42 #include "google_breakpad/processor/stackwalker.h"
48 class StackwalkerPPC64 : public Stackwalker {
53 // to the base Stackwalker constructor.
61 // Implementation of Stackwalker, using ppc64 context (stack pointer in %r1,
stackwalker_sparc.h 30 // stackwalker_sparc.h: sparc-specific stackwalker.
44 #include "google_breakpad/processor/stackwalker.h"
50 class StackwalkerSPARC : public Stackwalker {
55 // to the base Stackwalker constructor.
63 // Implementation of Stackwalker, using sparc context (%fp, %sp, %pc) and
stackwalker_mips.h 30 // stackwalker_mips.h: MIPS-specific stackwalker.
42 #include "google_breakpad/processor/stackwalker.h"
50 class StackwalkerMIPS : public Stackwalker {
55 // through to the base Stackwalker constructor.
63 // Implementation of Stackwalker, using mips context and stack conventions.
stackwalker_amd64.h 30 // stackwalker_amd64.h: amd64-specific stackwalker.
45 #include "google_breakpad/processor/stackwalker.h"
53 class StackwalkerAMD64 : public Stackwalker {
58 // to the base Stackwalker constructor.
69 // Implementation of Stackwalker, using amd64 context (stack pointer in %rsp,
stackwalker_arm.h 32 // stackwalker_arm.h: arm-specific stackwalker.
45 #include "google_breakpad/processor/stackwalker.h"
51 class StackwalkerARM : public Stackwalker {
56 // to the base Stackwalker constructor.
70 // Implementation of Stackwalker, using arm context and stack conventions.
stackwalker_arm64.h 32 // stackwalker_arm64.h: arm64-specific stackwalker.
45 #include "google_breakpad/processor/stackwalker.h"
51 class StackwalkerARM64 : public Stackwalker {
56 // to the base Stackwalker constructor.
71 // Implementation of Stackwalker, using arm64 context and stack conventions.
microdump_processor.cc 44 #include "google_breakpad/processor/stackwalker.h"
70 scoped_ptr<Stackwalker> stackwalker(
71 Stackwalker::StackwalkerForCPU(
79 if (stackwalker.get()) {
80 if (!stackwalker->Walk(stack.get(),
87 BPLOG(ERROR) << "No stackwalker found for microdump.";
stackwalker_address_list.cc 54 : Stackwalker(NULL, NULL, modules, frame_symbolizer),
stackwalker_x86.h 32 // stackwalker_x86.h: x86-specific stackwalker.
47 #include "google_breakpad/processor/stackwalker.h"
56 class StackwalkerX86 : public Stackwalker {
61 // to the base Stackwalker constructor.
72 // Implementation of Stackwalker, using x86 context (%ebp, %esp, %eip) and
stackwalker_ppc64.cc 30 // stackwalker_ppc64.cc: ppc64-specific stackwalker.
51 : Stackwalker(system_info, memory, modules, resolver_helper),
stackwalker_sparc.cc 30 // stackwalker_sparc.cc: sparc-specific stackwalker.
51 : Stackwalker(system_info, memory, modules, resolver_helper),
stackwalker_ppc.cc 30 // stackwalker_ppc.cc: ppc-specific stackwalker.
51 : Stackwalker(system_info, memory, modules, resolver_helper),
stackwalker_address_list_unittest.cc 54 using google_breakpad::Stackwalker;
stackwalker_amd64.cc 30 // stackwalker_amd64.cc: amd64-specific stackwalker.
99 : Stackwalker(system_info, memory, modules, resolver_helper),
stackwalker_arm.cc 30 // stackwalker_arm.cc: arm-specific stackwalker.
56 : Stackwalker(system_info, memory, modules, resolver_helper),
stackwalker_arm64.cc 30 // stackwalker_arm64.cc: arm64-specific stackwalker.
55 : Stackwalker(system_info, memory, modules, resolver_helper),
stackwalker_mips.cc 30 // stackwalker_mips.cc: MIPS-specific stackwalker.
56 : Stackwalker(system_info, memory, modules, resolver_helper),
stackwalker_amd64_unittest.cc 56 using google_breakpad::Stackwalker;
101 Stackwalker::set_max_frames_scanned(1024);
200 // The stackwalker should be able to produce the context frame even
417 Stackwalker::set_max_frames_scanned(0);
stackwalker_arm64_unittest.cc 57 using google_breakpad::Stackwalker;
102 Stackwalker::set_max_frames_scanned(1024);
169 // The stackwalker should be able to produce the context frame even
329 // If the stackwalker resorts to stack scanning, it will scan much
430 Stackwalker::set_max_frames_scanned(0);
    [all...]
stackwalker_arm_unittest.cc 57 using google_breakpad::Stackwalker;
103 Stackwalker::set_max_frames_scanned(1024);
192 // The stackwalker should be able to produce the context frame even
350 // If the stackwalker resorts to stack scanning, it will scan much
450 Stackwalker::set_max_frames_scanned(0);
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
call_stack.h 68 // Stackwalker is responsible for building the frames_ vector.
69 friend class Stackwalker;
stackwalker.h 30 // stackwalker.h: Generic stackwalker.
32 // The Stackwalker class is an abstract base class providing common generic
36 // Stackwalker assembles these StackFrame strucutres into a CallStack.
63 class Stackwalker {
65 virtual ~Stackwalker() {}
77 // CodeModules passed to the StackWalker constructor (which currently
87 static Stackwalker* StackwalkerForCPU(
114 Stackwalker(const SystemInfo* system_info,
216 // The maximum number of frames Stackwalker will walk through
    [all...]

Completed in 1393 milliseconds

1 2