Home
last modified time | relevance | path

Searched refs:StackFramePPC (Results 1 – 5 of 5) sorted by relevance

/external/google-breakpad/src/processor/
Dstackwalker_ppc.cc71 StackFramePPC* frame = new StackFramePPC(); in GetContextFrame()
76 frame->context_validity = StackFramePPC::CONTEXT_VALID_ALL; in GetContextFrame()
100 StackFramePPC* last_frame = static_cast<StackFramePPC*>( in GetCallerFrame()
124 StackFramePPC* frame = new StackFramePPC(); in GetCallerFrame()
129 frame->context_validity = StackFramePPC::CONTEXT_VALID_SRR0 | in GetCallerFrame()
130 StackFramePPC::CONTEXT_VALID_GPR1; in GetCallerFrame()
Dstackwalker_selftest.cc85 using google_breakpad::StackFramePPC;
363 StackFramePPC *frame_ppc = reinterpret_cast<StackFramePPC*>(frame); in CountCallerFrames()
Dstackwalk_common.cc314 const StackFramePPC *frame_ppc = in PrintStack()
315 reinterpret_cast<const StackFramePPC*>(frame); in PrintStack()
317 if (frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_SRR0) in PrintStack()
319 if (frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_GPR1) in PrintStack()
/external/google-breakpad/src/tools/mac/crash_report/
Dcrash_report.mm69 using google_breakpad::StackFramePPC;
164 const StackFramePPC *frame_ppc =
165 reinterpret_cast<const StackFramePPC*>(frame);
167 if ((frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_ALL) ==
168 StackFramePPC::CONTEXT_VALID_ALL) {
185 if (frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_SRR0)
187 if (frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_GPR1)
/external/google-breakpad/src/google_breakpad/processor/
Dstack_frame_cpu.h100 struct StackFramePPC : public StackFrame { struct
112 StackFramePPC() : context(), context_validity(CONTEXT_VALID_NONE) {} in StackFramePPC() argument