Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp3342 const char *exit_desc = m_process_sp->GetExitDescription(); in Launch() local
3344 if (exit_desc && exit_desc[0]) in Launch()
3345 desc = " (" + std::string(exit_desc) + ')'; in Launch()
3474 const char *exit_desc = process_sp->GetExitDescription(); in Attach() local
3475 if (exit_desc) in Attach()
3476 error.SetErrorStringWithFormat("%s", exit_desc); in Attach()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp6763 const char *exit_desc = process->GetExitDescription(); in WindowDelegateDraw() local
6765 if (exit_desc && exit_desc[0]) in WindowDelegateDraw()
6766 window.Printf(" with status = %i (%s)", exit_status, exit_desc); in WindowDelegateDraw()