Home
last modified time | relevance | path

Searched refs:exit_desc (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBProcess.cpp672 const char *exit_desc = NULL; in GetExitDescription() local
677 exit_desc = process_sp->GetExitDescription (); in GetExitDescription()
682 static_cast<void*>(process_sp.get()), exit_desc); in GetExitDescription()
683 return exit_desc; in GetExitDescription()
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDTarget.cpp2675 const char *exit_desc = m_process_sp->GetExitDescription(); in Launch() local
2677 if (exit_desc && exit_desc[0]) in Launch()
2680 …ringWithFormat ("process exited with status %i (%s)" LAUNCH_SHELL_MESSAGE, exit_status, exit_desc); in Launch()
2682 … error.SetErrorStringWithFormat ("process exited with status %i (%s)", exit_status, exit_desc); in Launch()
2773 const char *exit_desc = process_sp->GetExitDescription (); in Attach() local
2774 if (exit_desc) in Attach()
2775 error.SetErrorStringWithFormat ("attach failed: %s", exit_desc); in Attach()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDIOHandler.cpp4674 const char *exit_desc = process->GetExitDescription(); in WindowDelegateDraw() local
4676 if (exit_desc && exit_desc[0]) in WindowDelegateDraw()
4677 window.Printf (" with status = %i (%s)", exit_status, exit_desc); in WindowDelegateDraw()