Lines Matching refs:sb_error
513 SBError sb_error; in ResumeNewPlan() local
518 sb_error.SetErrorString("No process in SBThread::ResumeNewPlan"); in ResumeNewPlan()
519 return sb_error; in ResumeNewPlan()
525 sb_error.SetErrorString("No thread in SBThread::ResumeNewPlan"); in ResumeNewPlan()
526 return sb_error; in ResumeNewPlan()
539 sb_error.ref() = process->Resume(); in ResumeNewPlan()
541 if (sb_error.Success()) in ResumeNewPlan()
549 return sb_error; in ResumeNewPlan()
769 SBError sb_error; in StepOverUntil() local
797 sb_error.SetErrorString("invalid line argument"); in StepOverUntil()
798 return sb_error; in StepOverUntil()
811 sb_error.SetErrorString("no valid frames in thread to step"); in StepOverUntil()
812 return sb_error; in StepOverUntil()
823 …sb_error.SetErrorStringWithFormat("frame %u doesn't have debug information", frame_sp->GetFrameInd… in StepOverUntil()
824 return sb_error; in StepOverUntil()
839 sb_error.SetErrorString("invalid file argument or no file for frame"); in StepOverUntil()
840 return sb_error; in StepOverUntil()
889 sb_error.SetErrorStringWithFormat("No line entries for %s:%u", path, line); in StepOverUntil()
892 sb_error.SetErrorString ("step until target not in current function"); in StepOverUntil()
902 sb_error = ResumeNewPlan (exe_ctx, new_plan_sp.get()); in StepOverUntil()
907 sb_error.SetErrorString("this SBThread object is invalid"); in StepOverUntil()
909 return sb_error; in StepOverUntil()
915 SBError sb_error; in ReturnFromFrame() local
929 sb_error.SetError (thread->ReturnFromFrame(frame.GetFrameSP(), return_value.GetSP())); in ReturnFromFrame()
932 return sb_error; in ReturnFromFrame()