Lines Matching refs:sb_error

494   SBError sb_error;  in ResumeNewPlan()  local
498 sb_error.SetErrorString("No process in SBThread::ResumeNewPlan"); in ResumeNewPlan()
499 return sb_error; in ResumeNewPlan()
504 sb_error.SetErrorString("No thread in SBThread::ResumeNewPlan"); in ResumeNewPlan()
505 return sb_error; in ResumeNewPlan()
519 sb_error.ref() = process->Resume(); in ResumeNewPlan()
521 sb_error.ref() = process->ResumeSynchronous(nullptr); in ResumeNewPlan()
523 return sb_error; in ResumeNewPlan()
774 SBError sb_error; in StepOverUntil() local
787 sb_error.SetErrorString("invalid line argument"); in StepOverUntil()
788 return sb_error; in StepOverUntil()
799 sb_error.SetErrorString("no valid frames in thread to step"); in StepOverUntil()
800 return sb_error; in StepOverUntil()
809 sb_error.SetErrorStringWithFormat( in StepOverUntil()
811 return sb_error; in StepOverUntil()
822 sb_error.SetErrorString("invalid file argument or no file for frame"); in StepOverUntil()
823 return sb_error; in StepOverUntil()
866 sb_error.SetErrorStringWithFormat("No line entries for %s:%u", path, in StepOverUntil()
869 sb_error.SetErrorString("step until target not in current function"); in StepOverUntil()
878 sb_error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepOverUntil()
880 sb_error.SetErrorString(new_plan_status.AsCString()); in StepOverUntil()
883 sb_error.SetErrorString("this SBThread object is invalid"); in StepOverUntil()
885 return sb_error; in StepOverUntil()
944 SBError sb_error; in JumpToLine() local
950 sb_error.SetErrorString("this SBThread object is invalid"); in JumpToLine()
951 return sb_error; in JumpToLine()
957 sb_error.SetError(err); in JumpToLine()
958 return sb_error; in JumpToLine()
964 SBError sb_error; in ReturnFromFrame() local
971 sb_error.SetError( in ReturnFromFrame()
975 return sb_error; in ReturnFromFrame()
981 SBError sb_error; in UnwindInnermostExpression() local
988 sb_error.SetError(thread->UnwindInnermostExpression()); in UnwindInnermostExpression()
989 if (sb_error.Success()) in UnwindInnermostExpression()
993 return sb_error; in UnwindInnermostExpression()