Home
last modified time | relevance | path

Searched refs:m_cmd_syntax (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectLog.cpp475 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str()); in DoExecute()
499 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str()); in DoExecute()
521 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str()); in DoExecute()
544 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str()); in DoExecute()
599 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str()); in DoExecute()
H A DCommandObjectProcess.cpp949 m_cmd_syntax.c_str()); in DoExecute()
1264 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
1430 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
H A DCommandObjectMemory.cpp1807 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
H A DCommandObjectThread.cpp1177 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandObject.cpp50 m_cmd_syntax = std::string(syntax); in CommandObject()
60 if (!m_cmd_syntax.empty()) in GetSyntax()
61 return m_cmd_syntax; in GetSyntax()
77 m_cmd_syntax = std::string(syntax_str.GetString()); in GetSyntax()
79 return m_cmd_syntax; in GetSyntax()
97 m_cmd_syntax = std::string(str); in SetSyntax()
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandObject.h376 std::string m_cmd_syntax; variable