Home
last modified time | relevance | path

Searched refs:new_command (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectRegexCommand.cpp64 llvm::Expected<std::string> new_command = in DoExecute() local
66 if (!new_command) { in DoExecute()
67 result.SetError(new_command.takeError()); in DoExecute()
73 result.GetOutputStream().Printf("%s\n", new_command->c_str()); in DoExecute()
76 return m_interpreter.HandleCommand(new_command->c_str(), in DoExecute()
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreter.cpp640 CommandObjectMultiword *new_command = new CommandObjectMultiword( in AddMultiwordCommand() local
642 new_command->SetRemovable(true); in AddMultiwordCommand()
643 lldb::CommandObjectSP new_command_sp(new_command); in AddMultiwordCommand()