Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandObject.cpp46 m_cmd_help_short(), m_cmd_help_long(), m_cmd_syntax(), m_flags(flags), in CommandObject()
50 m_cmd_syntax = syntax; in CommandObject()
60 if (!m_cmd_syntax.empty()) in GetSyntax()
61 return m_cmd_syntax; in GetSyntax()
77 m_cmd_syntax = syntax_str.GetString(); in GetSyntax()
79 return m_cmd_syntax; in GetSyntax()
90 void CommandObject::SetSyntax(llvm::StringRef str) { m_cmd_syntax = str; } in SetSyntax()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectProcess.cpp478 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
883 m_cmd_syntax.c_str()); in DoExecute()
1166 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
1210 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
1253 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
1293 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
H A DCommandObjectLog.cpp357 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str()); in DoExecute()
H A DCommandObjectMemory.cpp1709 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
H A DCommandObjectThread.cpp1371 m_cmd_name.c_str(), m_cmd_syntax.c_str()); in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandObject.h392 std::string m_cmd_syntax; variable