Lines Matching refs:sb_error
603 SBError sb_error; in ResumeNewPlan() local
607 sb_error.SetErrorString("No process in SBThread::ResumeNewPlan"); in ResumeNewPlan()
608 return sb_error; in ResumeNewPlan()
613 sb_error.SetErrorString("No thread in SBThread::ResumeNewPlan"); in ResumeNewPlan()
614 return sb_error; in ResumeNewPlan()
628 sb_error.ref() = process->Resume(); in ResumeNewPlan()
630 sb_error.ref() = process->ResumeSynchronous(NULL); in ResumeNewPlan()
632 return sb_error; in ResumeNewPlan()
906 SBError sb_error; in StepOverUntil() local
931 sb_error.SetErrorString("invalid line argument"); in StepOverUntil()
932 return sb_error; in StepOverUntil()
943 sb_error.SetErrorString("no valid frames in thread to step"); in StepOverUntil()
944 return sb_error; in StepOverUntil()
953 sb_error.SetErrorStringWithFormat( in StepOverUntil()
955 return sb_error; in StepOverUntil()
966 sb_error.SetErrorString("invalid file argument or no file for frame"); in StepOverUntil()
967 return sb_error; in StepOverUntil()
1008 sb_error.SetErrorStringWithFormat("No line entries for %s:%u", path, in StepOverUntil()
1011 sb_error.SetErrorString("step until target not in current function"); in StepOverUntil()
1020 sb_error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepOverUntil()
1022 sb_error.SetErrorString(new_plan_status.AsCString()); in StepOverUntil()
1025 sb_error.SetErrorString("this SBThread object is invalid"); in StepOverUntil()
1027 return sb_error; in StepOverUntil()
1075 SBError sb_error; in JumpToLine() local
1086 sb_error.SetErrorString("this SBThread object is invalid"); in JumpToLine()
1087 return sb_error; in JumpToLine()
1093 sb_error.SetError(err); in JumpToLine()
1094 return sb_error; in JumpToLine()
1098 SBError sb_error; in ReturnFromFrame() local
1112 sb_error.SetError( in ReturnFromFrame()
1116 return sb_error; in ReturnFromFrame()
1120 SBError sb_error; in UnwindInnermostExpression() local
1133 sb_error.SetError(thread->UnwindInnermostExpression()); in UnwindInnermostExpression()
1134 if (sb_error.Success()) in UnwindInnermostExpression()
1138 return sb_error; in UnwindInnermostExpression()