Home
last modified time | relevance | path

Searched refs:cmd_sp (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp860 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in IOHandlerInputComplete() local
861 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1012 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in AddRegexCommandToInterpreter() local
1013 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
1750 if (!cmd_sp) { in DoExecute()
1755 if (!cmd_sp->IsUserCommand()) { in DoExecute()
1943 cmd_sp->GetAsMultiwordCommand()->SetRemovable(true); in DoExecute()
1945 cmd_name, cmd_sp, m_options.m_overwrite); in DoExecute()
2037 if (!cmd_sp) { in DoExecute()
2042 if (!cmd_sp->IsUserCommand()) { in DoExecute()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandAlias.cpp79 lldb::CommandObjectSP cmd_sp, in CommandAlias() argument
88 if (ProcessAliasOptionsArgs(cmd_sp, options_args, m_option_args_sp)) { in CommandAlias()
89 m_underlying_command_sp = cmd_sp; in CommandAlias()
H A DCommandInterpreter.cpp941 [&result](CommandObjectSP cmd_sp, in VerifyUserMultiwordCmdPath()
943 if (!cmd_sp) { in VerifyUserMultiwordCmdPath()
947 if (!cmd_sp->IsUserCommand()) { in VerifyUserMultiwordCmdPath()
1123 if (cmd_sp.get()) in AddCommand()
1130 cmd_sp->SetIsUserCommand(false); in AddCommand()
1137 name_iter->second = cmd_sp; in AddCommand()
1139 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
1148 if (cmd_sp.get()) in AddUserCommand()
1170 if (cmd_sp->IsMultiwordObject()) { in AddUserCommand()
1184 cmd_sp->SetIsUserCommand(true); in AddUserCommand()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandAlias.h24 CommandAlias(CommandInterpreter &interpreter, lldb::CommandObjectSP cmd_sp,
H A DCommandInterpreter.h267 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
271 const lldb::CommandObjectSP &cmd_sp, bool can_replace);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h459 SBCommand(lldb::CommandObjectSP cmd_sp);
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp607 SBCommand::SBCommand(lldb::CommandObjectSP cmd_sp) : m_opaque_sp(cmd_sp) {} in SBCommand() argument