Home
last modified time | relevance | path

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

/external/llvm-project/lldb/examples/python/
Dprocess_events.py355 exit_desc = process.GetExitDescription()
356 if exit_desc:
357 … print("process %u exited with status %u: %s" % (pid, process.GetExitStatus(), exit_desc))
/external/llvm-project/lldb/source/Target/
DTarget.cpp3032 const char *exit_desc = m_process_sp->GetExitDescription(); in Launch() local
3034 if (exit_desc && exit_desc[0]) in Launch()
3035 desc = " (" + std::string(exit_desc) + ')'; in Launch()
3129 const char *exit_desc = process_sp->GetExitDescription(); in Attach() local
3130 if (exit_desc) in Attach()
3131 error.SetErrorStringWithFormat("%s", exit_desc); in Attach()
/external/llvm-project/lldb/source/API/
DSBProcess.cpp549 const char *exit_desc = nullptr; in GetExitDescription() local
554 exit_desc = process_sp->GetExitDescription(); in GetExitDescription()
556 return exit_desc; in GetExitDescription()
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp3376 const char *exit_desc = process->GetExitDescription(); in WindowDelegateDraw() local
3378 if (exit_desc && exit_desc[0]) in WindowDelegateDraw()
3379 window.Printf(" with status = %i (%s)", exit_status, exit_desc); in WindowDelegateDraw()