Lines Matching refs:help
42 const char *help = nullptr, in CommandPluginInterfaceImplementation() argument
46 : CommandObjectParsed(interpreter, name, help, syntax, flags), in CommandPluginInterfaceImplementation()
561 const char *help) { in AddMultiwordCommand() argument
562 LLDB_INSTRUMENT_VA(this, name, help); in AddMultiwordCommand()
565 new CommandObjectMultiword(*m_opaque_ptr, name, help)); in AddMultiwordCommand()
574 const char *name, lldb::SBCommandPluginInterface *impl, const char *help) { in AddCommand() argument
575 LLDB_INSTRUMENT_VA(this, name, impl, help); in AddCommand()
577 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
584 const char *help, const char *syntax) { in AddCommand() argument
585 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax); in AddCommand()
586 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
590 const char *name, lldb::SBCommandPluginInterface *impl, const char *help, in AddCommand() argument
592 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax, auto_repeat_command); in AddCommand()
596 *m_opaque_ptr, name, impl, help, syntax, /*flags=*/0, in AddCommand()
639 void SBCommand::SetHelp(const char *help) { in SetHelp() argument
640 LLDB_INSTRUMENT_VA(this, help); in SetHelp()
643 m_opaque_sp->SetHelp(help); in SetHelp()
646 void SBCommand::SetHelpLong(const char *help) { in SetHelpLong() argument
647 LLDB_INSTRUMENT_VA(this, help); in SetHelpLong()
650 m_opaque_sp->SetHelpLong(help); in SetHelpLong()
654 const char *help) { in AddMultiwordCommand() argument
655 LLDB_INSTRUMENT_VA(this, name, help); in AddMultiwordCommand()
662 m_opaque_sp->GetCommandInterpreter(), name, help); in AddMultiwordCommand()
672 const char *help) { in AddCommand() argument
673 LLDB_INSTRUMENT_VA(this, name, impl, help); in AddCommand()
674 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
680 const char *help, const char *syntax) { in AddCommand() argument
681 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax); in AddCommand()
682 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
687 const char *help, const char *syntax, in AddCommand() argument
689 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax, auto_repeat_command); in AddCommand()
697 m_opaque_sp->GetCommandInterpreter(), name, impl, help, syntax, in AddCommand()