Home
last modified time | relevance | path

Searched refs:sb_error (Results 1 – 7 of 7) sorted by relevance

/trueos/contrib/llvm/tools/lldb/source/API/
HDSBPlatform.cpp339 SBError sb_error; in ConnectRemote() local
345 sb_error.ref() = platform_sp->ConnectRemote(args); in ConnectRemote()
349 sb_error.SetErrorString("invalid platform"); in ConnectRemote()
351 return sb_error; in ConnectRemote()
469 SBError sb_error; in Get() local
473 sb_error.ref() = platform_sp->GetFile(src.ref(), dst.ref()); in Get()
477 sb_error.SetErrorString("invalid platform"); in Get()
479 return sb_error; in Get()
486 SBError sb_error; in Put() local
502 sb_error.ref() = platform_sp->PutFile(src.ref(), in Put()
[all …]
HDSBProcess.cpp719 SBError sb_error; in Continue() local
739 sb_error.SetError(error); in Continue()
742 sb_error.SetErrorString ("SBProcess is invalid"); in Continue()
747 sb_error.GetDescription (sstr); in Continue()
748 …log->Printf ("SBProcess(%p)::Continue () => SBError (%p): %s", process_sp.get(), sb_error.get(), s… in Continue()
751 return sb_error; in Continue()
758 SBError sb_error; in Destroy() local
763 sb_error.SetError(process_sp->Destroy()); in Destroy()
766 sb_error.SetErrorString ("SBProcess is invalid"); in Destroy()
772 sb_error.GetDescription (sstr); in Destroy()
[all …]
HDSBThread.cpp541 SBError sb_error; in ResumeNewPlan() local
546 sb_error.SetErrorString("No process in SBThread::ResumeNewPlan"); in ResumeNewPlan()
547 return sb_error; in ResumeNewPlan()
553 sb_error.SetErrorString("No thread in SBThread::ResumeNewPlan"); in ResumeNewPlan()
554 return sb_error; in ResumeNewPlan()
567 sb_error.ref() = process->Resume(); in ResumeNewPlan()
569 if (sb_error.Success()) in ResumeNewPlan()
577 return sb_error; in ResumeNewPlan()
797 SBError sb_error; in StepOverUntil() local
825 sb_error.SetErrorString("invalid line argument"); in StepOverUntil()
[all …]
HDSBDebugger.cpp595 lldb::SBError& sb_error) in CreateTarget() argument
601 sb_error.Clear(); in CreateTarget()
605 sb_error.ref() = m_opaque_sp->GetTargetList().CreateTarget (*m_opaque_sp, in CreateTarget()
612 if (sb_error.Success()) in CreateTarget()
617 sb_error.SetErrorString("invalid target"); in CreateTarget()
629 sb_error.GetCString(), in CreateTarget()
1012 SBError sb_error; in SetInternalVariable() local
1028 sb_error.SetError(error); in SetInternalVariable()
1029 return sb_error; in SetInternalVariable()
1176 SBError sb_error; in SetCurrentPlatform() local
[all …]
HDSBTarget.cpp612 SBError sb_error; in Install() local
617 sb_error.ref() = target_sp->Install(NULL); in Install()
619 return sb_error; in Install()
2415 SBError sb_error; in SetSectionLoadAddress() local
2421 sb_error.SetErrorStringWithFormat ("invalid section"); in SetSectionLoadAddress()
2430 sb_error.SetErrorString ("thread specific sections are not yet supported"); in SetSectionLoadAddress()
2451 sb_error.SetErrorString ("invalid target"); in SetSectionLoadAddress()
2453 return sb_error; in SetSectionLoadAddress()
2459 SBError sb_error; in ClearSectionLoadAddress() local
2466 sb_error.SetErrorStringWithFormat ("invalid section"); in ClearSectionLoadAddress()
[all …]
HDSBWatchpoint.cpp97 SBError sb_error; in GetError() local
101 sb_error.SetError(watchpoint_sp->GetError()); in GetError()
103 return sb_error; in GetError()
HDSBValue.cpp310 SBError sb_error; in GetError() local
315 sb_error.SetError(value_sp->GetError()); in GetError()
317 sb_error.SetErrorStringWithFormat ("error: %s", locker.GetError().AsCString()); in GetError()
319 return sb_error; in GetError()