Lines Matching refs:new_frame
637 scoped_ptr<StackFrameX86> new_frame; in GetCallerFrame() local
643 new_frame.reset(GetCallerByWindowsFrameInfo(frames, windows_frame_info, in GetCallerFrame()
647 if (!new_frame.get()) { in GetCallerFrame()
651 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info)); in GetCallerFrame()
655 if (!new_frame.get()) in GetCallerFrame()
656 new_frame.reset(GetCallerByEBPAtBase(frames, stack_scan_allowed)); in GetCallerFrame()
659 if (!new_frame.get()) in GetCallerFrame()
663 if (TerminateWalk(new_frame->context.eip, in GetCallerFrame()
664 new_frame->context.esp, in GetCallerFrame()
675 new_frame->instruction = new_frame->context.eip - 1; in GetCallerFrame()
677 return new_frame.release(); in GetCallerFrame()