Home
last modified time | relevance | path

Searched refs:AddCommand (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBCommandInterpreter.h88 lldb::SBCommand AddCommand(const char *name,
115 lldb::SBCommand AddCommand(const char *name,
145 lldb::SBCommand AddCommand(const char *name,
336 lldb::SBCommand AddCommand(const char *name,
363 lldb::SBCommand AddCommand(const char *name,
397 lldb::SBCommand AddCommand(const char *name,
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBCommandInterpreter.cpp553 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter
557 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
562 SBCommandInterpreter::AddCommand(const char *name, in AddCommand() function in SBCommandInterpreter
566 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
569 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter
650 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand
654 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
658 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand
662 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
665 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand
/openbsd-src/gnu/llvm/lldb/examples/plugins/commands/
H A Dfooplugin.cpp44 foo.AddCommand("child", new ChildCommand(), "a child of foo"); in PluginInitialize()
/openbsd-src/gnu/llvm/clang/tools/clang-format-vs/ClangFormat/
H A DClangFormatPackage.cs225 commandService.AddCommand(menuItem); in Initialize()
231 commandService.AddCommand(menuItem); in Initialize()
/openbsd-src/gnu/llvm/lldb/tools/intel-features/intel-mpx/
H A Dcli-wrapper-mpxtable.cpp415 mpxTable.AddCommand("show", new MPXTableShow(), mpx_show_help); in MPXPluginInitialize()
420 mpxTable.AddCommand("set", new MPXTableSet(), mpx_set_help); in MPXPluginInitialize()
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h267 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectCommands.cpp867 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1021 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1117 bool CommandInterpreter::AddCommand(llvm::StringRef name, in AddCommand() function in CommandInterpreter