Lines Matching refs:help

40                                        const char *help = nullptr,  in CommandPluginInterfaceImplementation()  argument
44 : CommandObjectParsed(interpreter, name, help, syntax, flags), in CommandPluginInterfaceImplementation()
540 const char *help) { in AddMultiwordCommand() argument
541 LLDB_INSTRUMENT_VA(this, name, help); in AddMultiwordCommand()
544 new CommandObjectMultiword(*m_opaque_ptr, name, help)); in AddMultiwordCommand()
553 const char *name, lldb::SBCommandPluginInterface *impl, const char *help) { in AddCommand() argument
554 LLDB_INSTRUMENT_VA(this, name, impl, help); in AddCommand()
556 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
563 const char *help, const char *syntax) { in AddCommand() argument
564 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax); in AddCommand()
565 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
569 const char *name, lldb::SBCommandPluginInterface *impl, const char *help, in AddCommand() argument
571 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax, auto_repeat_command); in AddCommand()
575 *m_opaque_ptr, name, impl, help, syntax, /*flags=*/0, in AddCommand()
618 void SBCommand::SetHelp(const char *help) { in SetHelp() argument
619 LLDB_INSTRUMENT_VA(this, help); in SetHelp()
622 m_opaque_sp->SetHelp(help); in SetHelp()
625 void SBCommand::SetHelpLong(const char *help) { in SetHelpLong() argument
626 LLDB_INSTRUMENT_VA(this, help); in SetHelpLong()
629 m_opaque_sp->SetHelpLong(help); in SetHelpLong()
633 const char *help) { in AddMultiwordCommand() argument
634 LLDB_INSTRUMENT_VA(this, name, help); in AddMultiwordCommand()
641 m_opaque_sp->GetCommandInterpreter(), name, help); in AddMultiwordCommand()
651 const char *help) { in AddCommand() argument
652 LLDB_INSTRUMENT_VA(this, name, impl, help); in AddCommand()
653 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
659 const char *help, const char *syntax) { in AddCommand() argument
660 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax); in AddCommand()
661 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
666 const char *help, const char *syntax, in AddCommand() argument
668 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax, auto_repeat_command); in AddCommand()
676 m_opaque_sp->GetCommandInterpreter(), name, impl, help, syntax, in AddCommand()