/external/google-breakpad/src/processor/ |
D | stackwalker.cc | 66 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()
|
D | microdump_processor.cc | 67 scoped_ptr<Stackwalker> stackwalker( in Process() 68 Stackwalker::StackwalkerForCPU( in Process()
|
D | stackwalker_sparc.h | 49 class StackwalkerSPARC : public Stackwalker {
|
D | stackwalker_ppc.h | 49 class StackwalkerPPC : public Stackwalker {
|
D | stackwalker_ppc64.h | 47 class StackwalkerPPC64 : public Stackwalker {
|
D | stackwalker_address_list.h | 46 class StackwalkerAddressList : public Stackwalker {
|
D | stackwalker_mips.h | 49 class StackwalkerMIPS : public Stackwalker {
|
D | stackwalker_riscv64.h | 47 class StackwalkerRISCV64 : public Stackwalker {
|
D | stackwalker_arm.h | 50 class StackwalkerARM : public Stackwalker {
|
D | stackwalker_riscv.h | 47 class StackwalkerRISCV : public Stackwalker {
|
D | stackwalker_x86.h | 55 class StackwalkerX86 : public Stackwalker {
|
D | stackwalker_amd64.h | 52 class StackwalkerAMD64 : public Stackwalker {
|
D | stackwalker_arm64.h | 50 class StackwalkerARM64 : public Stackwalker {
|
D | stackwalker_address_list.cc | 57 : Stackwalker(NULL, NULL, modules, frame_symbolizer), in StackwalkerAddressList()
|
D | stackwalker_ppc64.cc | 55 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerPPC64()
|
D | stackwalker_sparc.cc | 54 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerSPARC()
|
D | stackwalker_ppc.cc | 55 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerPPC()
|
D | stackwalker_mips_unittest.cc | 60 using google_breakpad::Stackwalker; 107 Stackwalker::set_max_frames_scanned(1024); in StackwalkerMIPSFixture() 492 Stackwalker::set_max_frames_scanned(0); in TEST_F()
|
D | stackwalker_mips64_unittest.cc | 61 using google_breakpad::Stackwalker; 108 Stackwalker::set_max_frames_scanned(1024); in StackwalkerMIPSFixture() 500 Stackwalker::set_max_frames_scanned(0); in TEST_F()
|
D | stackwalker_address_list_unittest.cc | 57 using google_breakpad::Stackwalker;
|
D | stackwalker_riscv64_unittest.cc | 61 using google_breakpad::Stackwalker; 107 Stackwalker::set_max_frames_scanned(1024); in StackwalkerRISCV64Fixture() 435 Stackwalker::set_max_frames_scanned(0); in TEST_F()
|
D | stackwalker_riscv_unittest.cc | 61 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/ |
D | stackwalker.h | 62 class Stackwalker { 64 virtual ~Stackwalker() {} in ~Stackwalker() 86 static Stackwalker* StackwalkerForCPU( 115 Stackwalker(const SystemInfo* system_info,
|
D | call_stack.h | 74 friend class Stackwalker;
|
/external/google-breakpad/docs/ |
D | stack_walking.md | 44 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 …]
|