Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp599 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter
602 lldb::SBCommand, SBCommandInterpreter, AddCommand, in AddCommand()
606 return LLDB_RECORD_RESULT(AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
611 SBCommandInterpreter::AddCommand(const char *name, in AddCommand() function in SBCommandInterpreter
614 LLDB_RECORD_METHOD(lldb::SBCommand, SBCommandInterpreter, AddCommand, in AddCommand()
619 AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/"")) in AddCommand()
622 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter
625 LLDB_RECORD_METHOD(lldb::SBCommand, SBCommandInterpreter, AddCommand, in AddCommand()
707 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand
711 lldb::SBCommand, SBCommand, AddCommand, in AddCommand()
[all …]
/external/llvm-project/lldb/unittests/API/
DSBCommandInterpreterTest.cpp50 m_interp.AddCommand("dummy", &dummy, /*help=*/nullptr); in TEST_F()
65 m_interp.AddCommand("dummy_with_autorepeat", &dummy, /*help=*/nullptr, in TEST_F()
86 command.AddCommand("subcommand", &subcommand, /*help=*/nullptr); in TEST_F()
102 command.AddCommand("subcommand_with_autorepeat", &subcommand, in TEST_F()
121 command.AddCommand( in TEST_F()
/external/llvm-project/lldb/include/lldb/API/
DSBCommandInterpreter.h86 lldb::SBCommand AddCommand(const char *name,
113 lldb::SBCommand AddCommand(const char *name,
143 lldb::SBCommand AddCommand(const char *name,
332 lldb::SBCommand AddCommand(const char *name,
359 lldb::SBCommand AddCommand(const char *name,
393 lldb::SBCommand AddCommand(const char *name,
/external/llvm-project/lldb/examples/plugins/commands/
Dfooplugin.cpp44 foo.AddCommand("child", new ChildCommand(), "a child of foo"); in PluginInitialize()
/external/llvm-project/lldb/test/API/api/command-return-object/
Dmain.cpp30 interp.AddCommand("crasher", &crasher, nullptr /*help*/); in main()
/external/llvm-project/lldb/tools/intel-features/intel-pt/
Dcli-wrapper-pt.cpp517 proc_trace.AddCommand("start", proc_trace_start, help_proc_trace_start, in PTPluginInitialize()
532 proc_trace.AddCommand("stop", proc_trace_stop, help_proc_trace_stop, in PTPluginInitialize()
561 proc_trace.AddCommand("show-instr-log", proc_trace_show_instr_log, in PTPluginInitialize()
581 proc_trace.AddCommand("show-trace-options", proc_trace_options, in PTPluginInitialize()
/external/llvm-project/lldb/test/API/functionalities/plugins/command_plugin/
Dplugin.cpp.template43 foo.AddCommand("child",new ChildCommand(),"a child of plugin_loaded_command");
/external/llvm-project/clang/tools/clang-format-vs/ClangFormat/
DClangFormatPackage.cs225 commandService.AddCommand(menuItem); in Initialize()
231 commandService.AddCommand(menuItem); in Initialize()
/external/llvm-project/lldb/tools/intel-features/intel-mpx/
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()
/external/deqp-deps/amber/src/vkscript/
Dcommand_parser.h48 void AddCommand(std::unique_ptr<Command> command) { in AddCommand() function
/external/clang/tools/clang-format-vs/ClangFormat/
DClangFormatPackage.cs185 commandService.AddCommand(menuItem); in Initialize()
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h261 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
/external/llvm-project/lldb/source/Commands/
DCommandObjectCommands.cpp848 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1004 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp991 bool CommandInterpreter::AddCommand(llvm::StringRef name, in AddCommand() function in CommandInterpreter