Lines Matching refs:sb_error

492   SBError sb_error;  in ResumeNewPlan()  local
496 sb_error.SetErrorString("No process in SBThread::ResumeNewPlan"); in ResumeNewPlan()
497 return sb_error; in ResumeNewPlan()
502 sb_error.SetErrorString("No thread in SBThread::ResumeNewPlan"); in ResumeNewPlan()
503 return sb_error; in ResumeNewPlan()
517 sb_error.ref() = process->Resume(); in ResumeNewPlan()
519 sb_error.ref() = process->ResumeSynchronous(nullptr); in ResumeNewPlan()
521 return sb_error; in ResumeNewPlan()
772 SBError sb_error; in StepOverUntil() local
785 sb_error.SetErrorString("invalid line argument"); in StepOverUntil()
786 return sb_error; in StepOverUntil()
801 sb_error.SetErrorString("no valid frames in thread to step"); in StepOverUntil()
802 return sb_error; in StepOverUntil()
811 sb_error.SetErrorStringWithFormat( in StepOverUntil()
813 return sb_error; in StepOverUntil()
824 sb_error.SetErrorString("invalid file argument or no file for frame"); in StepOverUntil()
825 return sb_error; in StepOverUntil()
862 sb_error.SetErrorStringWithFormat("No line entries for %s:%u", path, in StepOverUntil()
865 sb_error.SetErrorString("step until target not in current function"); in StepOverUntil()
874 sb_error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepOverUntil()
876 sb_error.SetErrorString(new_plan_status.AsCString()); in StepOverUntil()
879 sb_error.SetErrorString("this SBThread object is invalid"); in StepOverUntil()
881 return sb_error; in StepOverUntil()
940 SBError sb_error; in JumpToLine() local
946 sb_error.SetErrorString("this SBThread object is invalid"); in JumpToLine()
947 return sb_error; in JumpToLine()
953 sb_error.SetError(err); in JumpToLine()
954 return sb_error; in JumpToLine()
960 SBError sb_error; in ReturnFromFrame() local
967 sb_error.SetError( in ReturnFromFrame()
971 return sb_error; in ReturnFromFrame()
977 SBError sb_error; in UnwindInnermostExpression() local
984 sb_error.SetError(thread->UnwindInnermostExpression()); in UnwindInnermostExpression()
985 if (sb_error.Success()) in UnwindInnermostExpression()
989 return sb_error; in UnwindInnermostExpression()