Lines Matching refs:sb_error

502   SBError sb_error;  in ResumeNewPlan()  local
506 sb_error.SetErrorString("No process in SBThread::ResumeNewPlan"); in ResumeNewPlan()
507 return sb_error; in ResumeNewPlan()
512 sb_error.SetErrorString("No thread in SBThread::ResumeNewPlan"); in ResumeNewPlan()
513 return sb_error; in ResumeNewPlan()
527 sb_error.ref() = process->Resume(); in ResumeNewPlan()
529 sb_error.ref() = process->ResumeSynchronous(nullptr); in ResumeNewPlan()
531 return sb_error; in ResumeNewPlan()
796 SBError sb_error; in StepOverUntil() local
809 sb_error.SetErrorString("invalid line argument"); in StepOverUntil()
810 return LLDB_RECORD_RESULT(sb_error); in StepOverUntil()
821 sb_error.SetErrorString("no valid frames in thread to step"); in StepOverUntil()
822 return LLDB_RECORD_RESULT(sb_error); in StepOverUntil()
831 sb_error.SetErrorStringWithFormat( in StepOverUntil()
833 return LLDB_RECORD_RESULT(sb_error); in StepOverUntil()
844 sb_error.SetErrorString("invalid file argument or no file for frame"); in StepOverUntil()
845 return LLDB_RECORD_RESULT(sb_error); in StepOverUntil()
888 sb_error.SetErrorStringWithFormat("No line entries for %s:%u", path, in StepOverUntil()
891 sb_error.SetErrorString("step until target not in current function"); in StepOverUntil()
900 sb_error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepOverUntil()
902 sb_error.SetErrorString(new_plan_status.AsCString()); in StepOverUntil()
905 sb_error.SetErrorString("this SBThread object is invalid"); in StepOverUntil()
907 return LLDB_RECORD_RESULT(sb_error); in StepOverUntil()
973 SBError sb_error; in JumpToLine() local
979 sb_error.SetErrorString("this SBThread object is invalid"); in JumpToLine()
980 return LLDB_RECORD_RESULT(sb_error); in JumpToLine()
986 sb_error.SetError(err); in JumpToLine()
987 return LLDB_RECORD_RESULT(sb_error); in JumpToLine()
994 SBError sb_error; in ReturnFromFrame() local
1001 sb_error.SetError( in ReturnFromFrame()
1005 return LLDB_RECORD_RESULT(sb_error); in ReturnFromFrame()
1012 SBError sb_error; in UnwindInnermostExpression() local
1019 sb_error.SetError(thread->UnwindInnermostExpression()); in UnwindInnermostExpression()
1020 if (sb_error.Success()) in UnwindInnermostExpression()
1024 return LLDB_RECORD_RESULT(sb_error); in UnwindInnermostExpression()