Home
last modified time | relevance | path

Searched refs:Stackwalker (Results 1 – 25 of 38) sorted by relevance

12

/external/google-breakpad/src/processor/
Dstackwalker.cc66 const int Stackwalker::kRASearchWords = 40;
73 uint32_t Stackwalker::max_frames_ = 1 << 20; // 1M
74 bool Stackwalker::max_frames_set_ = false;
76 uint32_t Stackwalker::max_frames_scanned_ = 1 << 14; // 16k
78 Stackwalker::Stackwalker(const SystemInfo* system_info, in Stackwalker() function in google_breakpad::Stackwalker
116 bool Stackwalker::Walk( in Walk()
208 Stackwalker* Stackwalker::StackwalkerForCPU( in StackwalkerForCPU()
220 Stackwalker* cpu_stackwalker = NULL; in StackwalkerForCPU()
305 bool Stackwalker::TerminateWalk(uint64_t caller_ip, in TerminateWalk()
330 bool Stackwalker::InstructionAddressSeemsValid(uint64_t address) const { in InstructionAddressSeemsValid()
Dmicrodump_processor.cc67 scoped_ptr<Stackwalker> stackwalker( in Process()
68 Stackwalker::StackwalkerForCPU( in Process()
Dstackwalker_sparc.h49 class StackwalkerSPARC : public Stackwalker {
Dstackwalker_ppc.h49 class StackwalkerPPC : public Stackwalker {
Dstackwalker_ppc64.h47 class StackwalkerPPC64 : public Stackwalker {
Dstackwalker_address_list.h46 class StackwalkerAddressList : public Stackwalker {
Dstackwalker_mips.h49 class StackwalkerMIPS : public Stackwalker {
Dstackwalker_riscv64.h47 class StackwalkerRISCV64 : public Stackwalker {
Dstackwalker_arm.h50 class StackwalkerARM : public Stackwalker {
Dstackwalker_riscv.h47 class StackwalkerRISCV : public Stackwalker {
Dstackwalker_x86.h55 class StackwalkerX86 : public Stackwalker {
Dstackwalker_amd64.h52 class StackwalkerAMD64 : public Stackwalker {
Dstackwalker_arm64.h50 class StackwalkerARM64 : public Stackwalker {
Dstackwalker_address_list.cc57 : Stackwalker(NULL, NULL, modules, frame_symbolizer), in StackwalkerAddressList()
Dstackwalker_ppc64.cc55 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerPPC64()
Dstackwalker_sparc.cc54 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerSPARC()
Dstackwalker_ppc.cc55 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerPPC()
Dstackwalker_mips_unittest.cc60 using google_breakpad::Stackwalker;
107 Stackwalker::set_max_frames_scanned(1024); in StackwalkerMIPSFixture()
492 Stackwalker::set_max_frames_scanned(0); in TEST_F()
Dstackwalker_mips64_unittest.cc61 using google_breakpad::Stackwalker;
108 Stackwalker::set_max_frames_scanned(1024); in StackwalkerMIPSFixture()
500 Stackwalker::set_max_frames_scanned(0); in TEST_F()
Dstackwalker_address_list_unittest.cc57 using google_breakpad::Stackwalker;
Dstackwalker_riscv64_unittest.cc61 using google_breakpad::Stackwalker;
107 Stackwalker::set_max_frames_scanned(1024); in StackwalkerRISCV64Fixture()
435 Stackwalker::set_max_frames_scanned(0); in TEST_F()
Dstackwalker_riscv_unittest.cc61 using google_breakpad::Stackwalker;
107 Stackwalker::set_max_frames_scanned(1024); in StackwalkerRISCVFixture()
435 Stackwalker::set_max_frames_scanned(0); in TEST_F()
/external/google-breakpad/src/google_breakpad/processor/
Dstackwalker.h62 class Stackwalker {
64 virtual ~Stackwalker() {} in ~Stackwalker()
86 static Stackwalker* StackwalkerForCPU(
115 Stackwalker(const SystemInfo* system_info,
Dcall_stack.h74 friend class Stackwalker;
/external/google-breakpad/docs/
Dstack_walking.md44 the [Stackwalker::StackwalkerForCPU](../src/google_breakpad/processor/stackwalker.h#77)
47 the specific !Stackwalker subclass based on the CPU architecture of the provided
52 Once a !Stackwalker instance has been obtained, the processor calls the
53 [Stackwalker::Walk](../src/google_breakpad/processor/source_line_resolver_interface.h)
55 !Stackwalker starts by calling the GetContextFrame method which returns a
109 To find the next frame in the stack, the !Stackwalker calls its
111 method, passing in the current frame. Each !Stackwalker subclass implements
129 If unwind info is not found then the !Stackwalker may resort to other methods.
134 If no caller frame was found by any other method most !Stackwalker
137 [Stackwalker::ScanForReturnAddress](../src/google_breakpad/processor/stackwalker.h#131)
[all …]

12