reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Target/Target.cpp
 2869       error.SetErrorString(
 2871       return error;
 2892         GetPlatform()->DebugProcess(launch_info, debugger, this, error);
 2910       error = m_process_sp->Launch(launch_info);
 2914     if (error.Success())
 2915       error.SetErrorString("failed to launch or debug process");
 2916     return error;
 2919   if (error.Success()) {
 2943             error = m_process_sp->PrivateResume();
 2945           if (!error.Success()) {
 2948                 "process resume at entry point failed: %s", error.AsCString());
 2949             error = error2;
 2962             error.SetErrorStringWithFormat(
 2966             error.SetErrorStringWithFormat("process exited with status %i (%s)",
 2970             error.SetErrorStringWithFormat(
 2974             error.SetErrorStringWithFormat("process exited with status %i",
 2978         error.SetErrorStringWithFormat(
 2986                                     error.AsCString());
 2987     error = error2;
 2989   return error;