Searched refs:StackFramePPC (Results 1 – 5 of 5) sorted by relevance
72 StackFramePPC* frame = new StackFramePPC(); in GetContextFrame()77 frame->context_validity = StackFramePPC::CONTEXT_VALID_ALL; in GetContextFrame()101 StackFramePPC* last_frame = static_cast<StackFramePPC*>( in GetCallerFrame()125 scoped_ptr<StackFramePPC> frame(new StackFramePPC()); in GetCallerFrame()130 frame->context_validity = StackFramePPC::CONTEXT_VALID_SRR0 | in GetCallerFrame()131 StackFramePPC::CONTEXT_VALID_GPR1; in GetCallerFrame()
85 using google_breakpad::StackFramePPC;363 StackFramePPC *frame_ppc = reinterpret_cast<StackFramePPC*>(frame); in CountCallerFrames()
314 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()
69 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)
100 struct StackFramePPC : public StackFrame { struct112 StackFramePPC() : context(), context_validity(CONTEXT_VALID_NONE) {} in StackFramePPC() argument