Lines Matching refs:CommandInterpreter

116 ConstString &CommandInterpreter::GetStaticBroadcasterClass() {  in GetStaticBroadcasterClass()
121 CommandInterpreter::CommandInterpreter(Debugger &debugger, in CommandInterpreter() function in CommandInterpreter
124 CommandInterpreter::GetStaticBroadcasterClass().AsCString()), in CommandInterpreter()
141 bool CommandInterpreter::GetExpandRegexAliases() const { in GetExpandRegexAliases()
147 bool CommandInterpreter::GetPromptOnQuit() const { in GetPromptOnQuit()
153 void CommandInterpreter::SetPromptOnQuit(bool enable) { in SetPromptOnQuit()
158 bool CommandInterpreter::GetSaveSessionOnQuit() const { in GetSaveSessionOnQuit()
164 void CommandInterpreter::SetSaveSessionOnQuit(bool enable) { in SetSaveSessionOnQuit()
169 FileSpec CommandInterpreter::GetSaveSessionDirectory() const { in GetSaveSessionDirectory()
174 void CommandInterpreter::SetSaveSessionDirectory(llvm::StringRef path) { in SetSaveSessionDirectory()
179 bool CommandInterpreter::GetEchoCommands() const { in GetEchoCommands()
185 void CommandInterpreter::SetEchoCommands(bool enable) { in SetEchoCommands()
190 bool CommandInterpreter::GetEchoCommentCommands() const { in GetEchoCommentCommands()
196 void CommandInterpreter::SetEchoCommentCommands(bool enable) { in SetEchoCommentCommands()
201 void CommandInterpreter::AllowExitCodeOnQuit(bool allow) { in AllowExitCodeOnQuit()
207 bool CommandInterpreter::SetQuitExitCode(int exit_code) { in SetQuitExitCode()
214 int CommandInterpreter::GetQuitExitCode(bool &exited) const { in GetQuitExitCode()
221 void CommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand()
230 bool CommandInterpreter::GetStopCmdSourceOnError() const { in GetStopCmdSourceOnError()
236 bool CommandInterpreter::GetSpaceReplPrompts() const { in GetSpaceReplPrompts()
242 bool CommandInterpreter::GetRepeatPreviousCommand() const { in GetRepeatPreviousCommand()
248 bool CommandInterpreter::GetRequireCommandOverwrite() const { in GetRequireCommandOverwrite()
254 void CommandInterpreter::Initialize() { in Initialize()
492 void CommandInterpreter::Clear() { in Clear()
496 const char *CommandInterpreter::ProcessEmbeddedScriptCommands(const char *arg) { in ProcessEmbeddedScriptCommands()
512 void CommandInterpreter::LoadCommandDictionary() { in LoadCommandDictionary()
901 int CommandInterpreter::GetCommandNamesMatchingPartialString( in GetCommandNamesMatchingPartialString()
915 CommandObjectMultiword *CommandInterpreter::VerifyUserMultiwordCmdPath( in VerifyUserMultiwordCmdPath()
973 CommandInterpreter::GetCommandSP(llvm::StringRef cmd_str, bool include_aliases, in GetCommandSP()
1099 bool CommandInterpreter::AddCommand(llvm::StringRef name, in AddCommand()
1123 Status CommandInterpreter::AddUserCommand(llvm::StringRef name, in AddUserCommand()
1169 CommandInterpreter::GetCommandSPExact(llvm::StringRef cmd_str, in GetCommandSPExact()
1211 CommandInterpreter::GetCommandObject(llvm::StringRef cmd_str, in GetCommandObject()
1246 CommandObject *CommandInterpreter::GetUserCommandObject( in GetUserCommandObject()
1282 bool CommandInterpreter::CommandExists(llvm::StringRef cmd) const { in CommandExists()
1286 bool CommandInterpreter::GetAliasFullName(llvm::StringRef cmd, in GetAliasFullName()
1316 bool CommandInterpreter::AliasExists(llvm::StringRef cmd) const { in AliasExists()
1320 bool CommandInterpreter::UserCommandExists(llvm::StringRef cmd) const { in UserCommandExists()
1324 bool CommandInterpreter::UserMultiwordCommandExists(llvm::StringRef cmd) const { in UserMultiwordCommandExists()
1329 CommandInterpreter::AddAlias(llvm::StringRef alias_name, in AddAlias()
1348 bool CommandInterpreter::RemoveAlias(llvm::StringRef alias_name) { in RemoveAlias()
1357 bool CommandInterpreter::RemoveCommand(llvm::StringRef cmd) { in RemoveCommand()
1369 bool CommandInterpreter::RemoveUser(llvm::StringRef user_name) { in RemoveUser()
1379 bool CommandInterpreter::RemoveUserMultiword(llvm::StringRef multi_name) { in RemoveUserMultiword()
1389 void CommandInterpreter::GetHelp(CommandReturnObject &result, in GetHelp()
1461 CommandObject *CommandInterpreter::GetCommandObjectForCommand( in GetCommandObjectForCommand()
1603 CommandObject *CommandInterpreter::BuildAliasResult( in BuildAliasResult()
1671 Status CommandInterpreter::PreprocessCommand(std::string &command) { in PreprocessCommand()
1822 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand()
1833 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand()
2000 void CommandInterpreter::HandleCompletionMatches(CompletionRequest &request) { in HandleCompletionMatches()
2047 void CommandInterpreter::HandleCompletion(CompletionRequest &request) { in HandleCompletion()
2068 CommandInterpreter::GetAutoSuggestionForCommand(llvm::StringRef line) { in GetAutoSuggestionForCommand()
2080 void CommandInterpreter::UpdatePrompt(llvm::StringRef new_prompt) { in UpdatePrompt()
2089 bool CommandInterpreter::Confirm(llvm::StringRef message, bool default_answer) { in Confirm()
2102 CommandInterpreter::GetAlias(llvm::StringRef alias_name) const { in GetAlias()
2112 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); } in HasCommands()
2114 bool CommandInterpreter::HasAliases() const { return (!m_alias_dict.empty()); } in HasAliases()
2116 bool CommandInterpreter::HasUserCommands() const { return (!m_user_dict.empty()); } in HasUserCommands()
2118 bool CommandInterpreter::HasUserMultiwordCommands() const { in HasUserMultiwordCommands()
2122 bool CommandInterpreter::HasAliasOptions() const { return HasAliases(); } in HasAliasOptions()
2124 void CommandInterpreter::BuildAliasCommandArgs(CommandObject *alias_cmd_obj, in BuildAliasCommandArgs()
2238 int CommandInterpreter::GetOptionArgumentPosition(const char *in_string) { in GetOptionArgumentPosition()
2305 void CommandInterpreter::SourceInitFile(FileSpec file, in SourceInitFile()
2327 void CommandInterpreter::SourceInitFileCwd(CommandReturnObject &result) { in SourceInitFileCwd()
2367 void CommandInterpreter::SourceInitFileHome(CommandReturnObject &result, in SourceInitFileHome()
2394 void CommandInterpreter::SourceInitFileGlobal(CommandReturnObject &result) { in SourceInitFileGlobal()
2409 const char *CommandInterpreter::GetCommandPrefix() { in GetCommandPrefix()
2414 PlatformSP CommandInterpreter::GetPlatform(bool prefer_target_platform) { in GetPlatform()
2428 bool CommandInterpreter::DidProcessStopAbnormally() const { in DidProcessStopAbnormally()
2471 CommandInterpreter::HandleCommands(const StringList &commands, in HandleCommands()
2481 void CommandInterpreter::HandleCommands(const StringList &commands, in HandleCommands()
2613 void CommandInterpreter::HandleCommandsFromFile( in HandleCommandsFromFile()
2621 void CommandInterpreter::HandleCommandsFromFile(FileSpec &cmd_file, in HandleCommandsFromFile()
2735 debugger, IOHandler::Type::CommandInterpreter, input_file_sp, in HandleCommandsFromFile()
2766 bool CommandInterpreter::GetSynchronous() { return m_synchronous_execution; } in GetSynchronous()
2768 void CommandInterpreter::SetSynchronous(bool value) { in SetSynchronous()
2775 void CommandInterpreter::OutputFormattedHelpText(Stream &strm, in OutputFormattedHelpText()
2819 void CommandInterpreter::OutputFormattedHelpText(Stream &strm, in OutputFormattedHelpText()
2830 void CommandInterpreter::OutputHelpText(Stream &strm, llvm::StringRef word_text, in OutputHelpText()
2874 void CommandInterpreter::FindCommandsForApropos( in FindCommandsForApropos()
2906 void CommandInterpreter::FindCommandsForApropos(llvm::StringRef search_word, in FindCommandsForApropos()
2932 ExecutionContext CommandInterpreter::GetExecutionContext() const { in GetExecutionContext()
2938 void CommandInterpreter::OverrideExecutionContext( in OverrideExecutionContext()
2943 void CommandInterpreter::RestoreExecutionContext() { in RestoreExecutionContext()
2948 void CommandInterpreter::GetProcessOutput() { in GetProcessOutput()
2954 void CommandInterpreter::StartHandlingCommand() { in StartHandlingCommand()
2964 void CommandInterpreter::FinishHandlingCommand() { in FinishHandlingCommand()
2972 bool CommandInterpreter::InterruptCommand() { in InterruptCommand()
2978 bool CommandInterpreter::WasInterrupted() const { in WasInterrupted()
2985 void CommandInterpreter::PrintCommandOutput(IOHandler &io_handler, in PrintCommandOutput()
3008 bool CommandInterpreter::EchoCommandNonInteractive( in EchoCommandNonInteractive()
3023 void CommandInterpreter::IOHandlerInputComplete(IOHandler &io_handler, in IOHandlerInputComplete()
3122 bool CommandInterpreter::IOHandlerInterrupt(IOHandler &io_handler) { in IOHandlerInterrupt()
3146 bool CommandInterpreter::SaveTranscript( in SaveTranscript()
3198 bool CommandInterpreter::IsInteractive() { in IsInteractive()
3202 FileSpec CommandInterpreter::GetCurrentSourceDir() { in GetCurrentSourceDir()
3208 void CommandInterpreter::GetLLDBCommandsFromIOHandler( in GetLLDBCommandsFromIOHandler()
3228 void CommandInterpreter::GetPythonCommandsFromIOHandler( in GetPythonCommandsFromIOHandler()
3248 bool CommandInterpreter::IsActive() { in IsActive()
3253 CommandInterpreter::GetIOHandler(bool force_create, in GetIOHandler()
3285 m_debugger, IOHandler::Type::CommandInterpreter, in GetIOHandler()
3298 CommandInterpreterRunResult CommandInterpreter::RunCommandInterpreter( in RunCommandInterpreter()
3322 CommandInterpreter::ResolveCommandImpl(std::string &command_line, in ResolveCommandImpl()