Lines Matching refs:help
40 const char *help = nullptr, in CommandPluginInterfaceImplementation() argument
44 : CommandObjectParsed(interpreter, name, help, syntax, flags), in CommandPluginInterfaceImplementation()
573 const char *help) { in AddMultiwordCommand() argument
575 (const char *, const char *), name, help); in AddMultiwordCommand()
578 new CommandObjectMultiword(*m_opaque_ptr, name, help); in AddMultiwordCommand()
588 const char *name, lldb::SBCommandPluginInterface *impl, const char *help) { in AddCommand() argument
592 impl, help); in AddCommand()
594 return LLDB_RECORD_RESULT(AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
601 const char *help, const char *syntax) { in AddCommand() argument
605 name, impl, help, syntax); in AddCommand()
607 AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/"")) in AddCommand()
611 const char *name, lldb::SBCommandPluginInterface *impl, const char *help, in AddCommand() argument
616 name, impl, help, syntax, auto_repeat_command); in AddCommand()
620 *m_opaque_ptr, name, impl, help, syntax, /*flags=*/0, in AddCommand()
663 void SBCommand::SetHelp(const char *help) { in SetHelp() argument
664 LLDB_RECORD_METHOD(void, SBCommand, SetHelp, (const char *), help); in SetHelp()
667 m_opaque_sp->SetHelp(help); in SetHelp()
670 void SBCommand::SetHelpLong(const char *help) { in SetHelpLong() argument
671 LLDB_RECORD_METHOD(void, SBCommand, SetHelpLong, (const char *), help); in SetHelpLong()
674 m_opaque_sp->SetHelpLong(help); in SetHelpLong()
678 const char *help) { in AddMultiwordCommand() argument
680 (const char *, const char *), name, help); in AddMultiwordCommand()
687 m_opaque_sp->GetCommandInterpreter(), name, help); in AddMultiwordCommand()
697 const char *help) { in AddCommand() argument
701 impl, help); in AddCommand()
702 return LLDB_RECORD_RESULT(AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
708 const char *help, const char *syntax) { in AddCommand() argument
712 name, impl, help, syntax); in AddCommand()
714 AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/"")) in AddCommand()
719 const char *help, const char *syntax, in AddCommand() argument
724 name, impl, help, syntax, auto_repeat_command); in AddCommand()
732 m_opaque_sp->GetCommandInterpreter(), name, impl, help, syntax, in AddCommand()