Home | History | Annotate | Download | only in processor

Lines Matching refs:Stackwalker

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,
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::Walk requires "
191 Stackwalker* Stackwalker::StackwalkerForCPU(
198 BPLOG(ERROR) << "Can't choose a stackwalker implementation without context";
202 Stackwalker* cpu_stackwalker = NULL;
263 ", can't choose a stackwalker "
268 bool Stackwalker::InstructionAddressSeemsValid(uint64_t address) {