Home
last modified time | relevance | path

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

/external/lldb/source/API/
DSBProcess.cpp668 SBError sb_error; in Continue() local
688 sb_error.SetError(error); in Continue()
691 sb_error.SetErrorString ("SBProcess is invalid"); in Continue()
696 sb_error.GetDescription (sstr); in Continue()
697 …log->Printf ("SBProcess(%p)::Continue () => SBError (%p): %s", process_sp.get(), sb_error.get(), s… in Continue()
700 return sb_error; in Continue()
707 SBError sb_error; in Destroy() local
712 sb_error.SetError(process_sp->Destroy()); in Destroy()
715 sb_error.SetErrorString ("SBProcess is invalid"); in Destroy()
721 sb_error.GetDescription (sstr); in Destroy()
[all …]
DSBThread.cpp513 SBError sb_error; in ResumeNewPlan() local
518 sb_error.SetErrorString("No process in SBThread::ResumeNewPlan"); in ResumeNewPlan()
519 return sb_error; in ResumeNewPlan()
525 sb_error.SetErrorString("No thread in SBThread::ResumeNewPlan"); in ResumeNewPlan()
526 return sb_error; in ResumeNewPlan()
539 sb_error.ref() = process->Resume(); in ResumeNewPlan()
541 if (sb_error.Success()) in ResumeNewPlan()
549 return sb_error; in ResumeNewPlan()
769 SBError sb_error; in StepOverUntil() local
797 sb_error.SetErrorString("invalid line argument"); in StepOverUntil()
[all …]
DSBInputReader.cpp99 SBError sb_error; in Initialize() local
107 sb_error.SetError (m_opaque_sp->Initialize (SBInputReader::PrivateCallback, in Initialize()
115 if (sb_error.Fail()) in Initialize()
125 sb_error.GetDescription (sstr); in Initialize()
127 sb_error.get(), sstr.GetData()); in Initialize()
130 return sb_error; in Initialize()
DSBDebugger.cpp523 lldb::SBError& sb_error) in CreateTarget() argument
529 sb_error.Clear(); in CreateTarget()
533 sb_error.ref() = m_opaque_sp->GetTargetList().CreateTarget (*m_opaque_sp, in CreateTarget()
540 if (sb_error.Success()) in CreateTarget()
545 sb_error.SetErrorString("invalid target"); in CreateTarget()
557 sb_error.GetCString(), in CreateTarget()
940 SBError sb_error; in SetInternalVariable() local
956 sb_error.SetError(error); in SetInternalVariable()
957 return sb_error; in SetInternalVariable()
1104 SBError sb_error; in SetCurrentPlatform() local
[all …]
DSBTarget.cpp2384 SBError sb_error; in SetSectionLoadAddress() local
2390 sb_error.SetErrorStringWithFormat ("invalid section"); in SetSectionLoadAddress()
2399 sb_error.SetErrorString ("thread specific sections are not yet supported"); in SetSectionLoadAddress()
2416 sb_error.SetErrorString ("invalid target"); in SetSectionLoadAddress()
2418 return sb_error; in SetSectionLoadAddress()
2424 SBError sb_error; in ClearSectionLoadAddress() local
2431 sb_error.SetErrorStringWithFormat ("invalid section"); in ClearSectionLoadAddress()
2446 sb_error.SetErrorStringWithFormat ("invalid target"); in ClearSectionLoadAddress()
2448 return sb_error; in ClearSectionLoadAddress()
2454 SBError sb_error; in SetModuleLoadAddress() local
[all …]
DSBWatchpoint.cpp97 SBError sb_error; in GetError() local
101 sb_error.SetError(watchpoint_sp->GetError()); in GetError()
103 return sb_error; in GetError()
DSBValue.cpp291 SBError sb_error; in GetError() local
296 sb_error.SetError(value_sp->GetError()); in GetError()
298 sb_error.SetErrorStringWithFormat ("error: %s", locker.GetError().AsCString()); in GetError()
300 return sb_error; in GetError()
/external/lldb/test/python_api/default-constructor/
DTestDefaultConstructorForAPIObjects.py119 import sb_error
120 sb_error.fuzz_obj(obj)
/external/lldb/scripts/Python/interface/
DSBDebugger.i193 lldb::SBError& sb_error);