Lines Matching defs:help

43                                        const char *help = nullptr,
47 : CommandObjectParsed(interpreter, name, help, syntax, flags),
591 const char *help) {
592 LLDB_INSTRUMENT_VA(this, name, help);
595 new CommandObjectMultiword(*m_opaque_ptr, name, help));
604 const char *name, lldb::SBCommandPluginInterface *impl, const char *help) {
605 LLDB_INSTRUMENT_VA(this, name, impl, help);
607 return AddCommand(name, impl, help, /*syntax=*/nullptr,
614 const char *help, const char *syntax) {
615 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax);
616 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/"");
620 const char *name, lldb::SBCommandPluginInterface *impl, const char *help,
622 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax, auto_repeat_command);
626 *m_opaque_ptr, name, impl, help, syntax, /*flags=*/0,
669 void SBCommand::SetHelp(const char *help) {
670 LLDB_INSTRUMENT_VA(this, help);
673 m_opaque_sp->SetHelp(help);
676 void SBCommand::SetHelpLong(const char *help) {
677 LLDB_INSTRUMENT_VA(this, help);
680 m_opaque_sp->SetHelpLong(help);
684 const char *help) {
685 LLDB_INSTRUMENT_VA(this, name, help);
692 m_opaque_sp->GetCommandInterpreter(), name, help);
702 const char *help) {
703 LLDB_INSTRUMENT_VA(this, name, impl, help);
704 return AddCommand(name, impl, help, /*syntax=*/nullptr,
710 const char *help, const char *syntax) {
711 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax);
712 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/"");
717 const char *help, const char *syntax,
719 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax, auto_repeat_command);
727 m_opaque_sp->GetCommandInterpreter(), name, impl, help, syntax,