Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/
DCommandInterpreter.cpp377 m_command_dict["apropos"] = CommandObjectSP (new CommandObjectApropos (*this)); in LoadCommandDictionary()
378 m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this)); in LoadCommandDictionary()
379 m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this)); in LoadCommandDictionary()
380 m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this)); in LoadCommandDictionary()
381 m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this)); in LoadCommandDictionary()
382 m_command_dict["frame"] = CommandObjectSP (new CommandObjectMultiwordFrame (*this)); in LoadCommandDictionary()
383 m_command_dict["gui"] = CommandObjectSP (new CommandObjectGUI (*this)); in LoadCommandDictionary()
384 m_command_dict["help"] = CommandObjectSP (new CommandObjectHelp (*this)); in LoadCommandDictionary()
385 m_command_dict["log"] = CommandObjectSP (new CommandObjectLog (*this)); in LoadCommandDictionary()
386 m_command_dict["memory"] = CommandObjectSP (new CommandObjectMemory (*this)); in LoadCommandDictionary()
[all …]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/
DCommandInterpreter.h506 …CommandObject::CommandMap m_command_dict; // Stores basic built-in commands (they cannot be dele… variable