Home
last modified time | relevance | path

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

/aosp_15_r20/external/google-breakpad/src/processor/
H A Dstackwalker_ppc.cc75 StackFramePPC* frame = new StackFramePPC(); in GetContextFrame()
80 frame->context_validity = StackFramePPC::CONTEXT_VALID_ALL; in GetContextFrame()
104 StackFramePPC* last_frame = static_cast<StackFramePPC*>( in GetCallerFrame()
128 scoped_ptr<StackFramePPC> frame(new StackFramePPC()); in GetCallerFrame()
133 frame->context_validity = StackFramePPC::CONTEXT_VALID_SRR0 | in GetCallerFrame()
134 StackFramePPC::CONTEXT_VALID_GPR1; in GetCallerFrame()
H A Dstackwalker_selftest.cc88 using google_breakpad::StackFramePPC;
366 StackFramePPC *frame_ppc = reinterpret_cast<StackFramePPC*>(frame); in CountCallerFrames()
H A Dstackwalk_common.cc356 const StackFramePPC* frame_ppc = in PrintStack()
357 reinterpret_cast<const StackFramePPC*>(frame); in PrintStack()
359 if (frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_SRR0) in PrintStack()
361 if (frame_ppc->context_validity & StackFramePPC::CONTEXT_VALID_GPR1) in PrintStack()
/aosp_15_r20/external/google-breakpad/src/google_breakpad/processor/
H A Dstack_frame_cpu.h99 struct StackFramePPC : public StackFrame { struct
111 StackFramePPC() : context(), context_validity(CONTEXT_VALID_NONE) {} in StackFramePPC() argument