/external/google-breakpad/src/processor/ |
D | stackwalker.cc | 61 const int Stackwalker::kRASearchWords = 40; 68 uint32_t Stackwalker::max_frames_ = 1 << 20; // 1M 69 bool Stackwalker::max_frames_set_ = false; 71 uint32_t Stackwalker::max_frames_scanned_ = 1 << 14; // 16k 73 Stackwalker::Stackwalker(const SystemInfo* system_info, in Stackwalker() function in google_breakpad::Stackwalker 111 bool Stackwalker::Walk( in Walk() 197 Stackwalker* Stackwalker::StackwalkerForCPU( in StackwalkerForCPU() 209 Stackwalker* cpu_stackwalker = NULL; in StackwalkerForCPU() 280 bool Stackwalker::TerminateWalk(uint64_t caller_ip, in TerminateWalk() 305 bool Stackwalker::InstructionAddressSeemsValid(uint64_t address) const { in InstructionAddressSeemsValid()
|
D | microdump_processor.cc | 64 scoped_ptr<Stackwalker> stackwalker( in Process() 65 Stackwalker::StackwalkerForCPU( in Process()
|
D | stackwalker_sparc.h | 50 class StackwalkerSPARC : public Stackwalker {
|
D | stackwalker_ppc.h | 50 class StackwalkerPPC : public Stackwalker {
|
D | stackwalker_ppc64.h | 48 class StackwalkerPPC64 : public Stackwalker {
|
D | stackwalker_address_list.h | 48 class StackwalkerAddressList : public Stackwalker {
|
D | stackwalker_mips.h | 50 class StackwalkerMIPS : public Stackwalker {
|
D | stackwalker_arm.h | 51 class StackwalkerARM : public Stackwalker {
|
D | stackwalker_amd64.h | 53 class StackwalkerAMD64 : public Stackwalker {
|
D | stackwalker_x86.h | 56 class StackwalkerX86 : public Stackwalker {
|
D | stackwalker_address_list.cc | 54 : Stackwalker(NULL, NULL, modules, frame_symbolizer), in StackwalkerAddressList()
|
D | stackwalker_arm64.h | 51 class StackwalkerARM64 : public Stackwalker {
|
D | stackwalker_ppc64.cc | 52 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerPPC64()
|
D | stackwalker_sparc.cc | 51 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerSPARC()
|
D | stackwalker_ppc.cc | 52 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerPPC()
|
D | stackwalker_mips_unittest.cc | 57 using google_breakpad::Stackwalker; 103 Stackwalker::set_max_frames_scanned(1024); in StackwalkerMIPSFixture() 488 Stackwalker::set_max_frames_scanned(0); in TEST_F()
|
D | stackwalker_mips64_unittest.cc | 58 using google_breakpad::Stackwalker; 104 Stackwalker::set_max_frames_scanned(1024); in StackwalkerMIPSFixture() 496 Stackwalker::set_max_frames_scanned(0); in TEST_F()
|
D | stackwalker_address_list_unittest.cc | 54 using google_breakpad::Stackwalker;
|
D | stackwalker_arm64_unittest.cc | 57 using google_breakpad::Stackwalker; 103 Stackwalker::set_max_frames_scanned(1024); in StackwalkerARM64Fixture() 431 Stackwalker::set_max_frames_scanned(0); in TEST_F()
|
D | stackwalker_amd64_unittest.cc | 56 using google_breakpad::Stackwalker; 102 Stackwalker::set_max_frames_scanned(1024); in StackwalkerAMD64Fixture() 651 Stackwalker::set_max_frames_scanned(0); in TEST_F()
|
D | stackwalker_amd64.cc | 99 : Stackwalker(system_info, memory, modules, resolver_helper), in StackwalkerAMD64()
|
D | stackwalker_arm_unittest.cc | 57 using google_breakpad::Stackwalker; 104 Stackwalker::set_max_frames_scanned(1024); in StackwalkerARMFixture() 451 Stackwalker::set_max_frames_scanned(0); in TEST_F()
|
/external/google-breakpad/src/google_breakpad/processor/ |
D | stackwalker.h | 63 class Stackwalker { 65 virtual ~Stackwalker() {} in ~Stackwalker() 87 static Stackwalker* StackwalkerForCPU( 116 Stackwalker(const SystemInfo* system_info,
|
D | call_stack.h | 75 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 …]
|