Searched refs:Stackwalker (Results 1 - 25 of 29) sorted by relevance

12

/external/google-breakpad/src/processor/
H A Dstackwalker.cc61 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, function in class:google_breakpad::Stackwalker
105 bool Stackwalker::Walk(
109 BPLOG_IF(ERROR, !stack) << "Stackwalker::Walk requires |stack|";
113 BPLOG_IF(ERROR, !modules_without_symbols) << "Stackwalker::Walk requires "
115 BPLOG_IF(ERROR, !modules_without_symbols) << "Stackwalker
[all...]
H A Dstackwalker_address_list.h48 class StackwalkerAddressList : public Stackwalker {
52 // Stackwalker constructor.
59 // Implementation of Stackwalker.
H A Dstackwalker_ppc.h50 class StackwalkerPPC : public Stackwalker {
55 // to the base Stackwalker constructor.
63 // Implementation of Stackwalker, using ppc context (stack pointer in %r1,
H A Dstackwalker_ppc64.h48 class StackwalkerPPC64 : public Stackwalker {
53 // to the base Stackwalker constructor.
61 // Implementation of Stackwalker, using ppc64 context (stack pointer in %r1,
H A Dstackwalker_sparc.h50 class StackwalkerSPARC : public Stackwalker {
55 // to the base Stackwalker constructor.
63 // Implementation of Stackwalker, using sparc context (%fp, %sp, %pc) and
H A Dstackwalker_mips.h50 class StackwalkerMIPS : public Stackwalker {
55 // through to the base Stackwalker constructor.
63 // Implementation of Stackwalker, using mips context and stack conventions.
H A Dmicrodump_processor.cc70 scoped_ptr<Stackwalker> stackwalker(
71 Stackwalker::StackwalkerForCPU(
H A Dstackwalker_address_list.cc54 : Stackwalker(NULL, NULL, modules, frame_symbolizer),
H A Dstackwalker_amd64.h53 class StackwalkerAMD64 : public Stackwalker {
58 // to the base Stackwalker constructor.
69 // Implementation of Stackwalker, using amd64 context (stack pointer in %rsp,
H A Dstackwalker_arm.h51 class StackwalkerARM : public Stackwalker {
56 // to the base Stackwalker constructor.
70 // Implementation of Stackwalker, using arm context and stack conventions.
H A Dstackwalker_arm64.h51 class StackwalkerARM64 : public Stackwalker {
56 // to the base Stackwalker constructor.
71 // Implementation of Stackwalker, using arm64 context and stack conventions.
H A Dstackwalker_x86.h56 class StackwalkerX86 : public Stackwalker {
61 // to the base Stackwalker constructor.
72 // Implementation of Stackwalker, using x86 context (%ebp, %esp, %eip) and
H A Dstackwalker_ppc64.cc51 : Stackwalker(system_info, memory, modules, resolver_helper),
H A Dstackwalker_sparc.cc51 : Stackwalker(system_info, memory, modules, resolver_helper),
H A Dstackwalker_ppc.cc51 : Stackwalker(system_info, memory, modules, resolver_helper),
H A Dstackwalker_address_list_unittest.cc54 using google_breakpad::Stackwalker;
H A Dstackwalker_amd64.cc99 : Stackwalker(system_info, memory, modules, resolver_helper),
H A Dstackwalker_arm.cc56 : Stackwalker(system_info, memory, modules, resolver_helper),
H A Dstackwalker_arm64.cc55 : Stackwalker(system_info, memory, modules, resolver_helper),
H A Dstackwalker_mips.cc56 : Stackwalker(system_info, memory, modules, resolver_helper),
H A Dstackwalker_amd64_unittest.cc56 using google_breakpad::Stackwalker;
101 Stackwalker::set_max_frames_scanned(1024);
417 Stackwalker::set_max_frames_scanned(0);
H A Dstackwalker_arm64_unittest.cc57 using google_breakpad::Stackwalker;
102 Stackwalker::set_max_frames_scanned(1024);
430 Stackwalker::set_max_frames_scanned(0);
H A Dstackwalker_arm_unittest.cc57 using google_breakpad::Stackwalker;
103 Stackwalker::set_max_frames_scanned(1024);
450 Stackwalker::set_max_frames_scanned(0);
/external/google-breakpad/src/google_breakpad/processor/
H A Dcall_stack.h68 // Stackwalker is responsible for building the frames_ vector.
69 friend class Stackwalker;
H A Dstackwalker.h32 // The Stackwalker class is an abstract base class providing common generic
36 // Stackwalker assembles these StackFrame strucutres into a CallStack.
63 class Stackwalker { class in namespace:google_breakpad
65 virtual ~Stackwalker() {}
87 static Stackwalker* StackwalkerForCPU(
114 Stackwalker(const SystemInfo* system_info,
216 // The maximum number of frames Stackwalker will walk through.

Completed in 238 milliseconds

12