Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp909 auto pos = m_command_dict.find(cmd); in GetCommandSP()
910 if (pos != m_command_dict.end()) in GetCommandSP()
950 auto pos = m_command_dict.find(cmd); in GetCommandSP()
951 if (pos != m_command_dict.end()) in GetCommandSP()
1013 if (name_iter != m_command_dict.end()) { in AddCommand()
1018 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
1131 return m_command_dict.find(std::string(cmd)) != m_command_dict.end(); in CommandExists()
1203 if (pos != m_command_dict.end()) { in RemoveCommand()
1206 m_command_dict.erase(pos); in RemoveCommand()
1237 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos) { in GetHelp()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h510 return m_command_dict; in GetCommands()
633 CommandObject::CommandMap m_command_dict; // Stores basic built-in commands variable