Lines Matching refs:CommandInterpreter

111 ConstString &CommandInterpreter::GetStaticBroadcasterClass() {  in GetStaticBroadcasterClass()
116 CommandInterpreter::CommandInterpreter(Debugger &debugger, in CommandInterpreter() function in CommandInterpreter
119 CommandInterpreter::GetStaticBroadcasterClass().AsCString()), in CommandInterpreter()
135 bool CommandInterpreter::GetExpandRegexAliases() const { in GetExpandRegexAliases()
141 bool CommandInterpreter::GetPromptOnQuit() const { in GetPromptOnQuit()
147 void CommandInterpreter::SetPromptOnQuit(bool enable) { in SetPromptOnQuit()
152 bool CommandInterpreter::GetSaveSessionOnQuit() const { in GetSaveSessionOnQuit()
158 void CommandInterpreter::SetSaveSessionOnQuit(bool enable) { in SetSaveSessionOnQuit()
163 FileSpec CommandInterpreter::GetSaveSessionDirectory() const { in GetSaveSessionDirectory()
168 void CommandInterpreter::SetSaveSessionDirectory(llvm::StringRef path) { in SetSaveSessionDirectory()
173 bool CommandInterpreter::GetEchoCommands() const { in GetEchoCommands()
179 void CommandInterpreter::SetEchoCommands(bool enable) { in SetEchoCommands()
184 bool CommandInterpreter::GetEchoCommentCommands() const { in GetEchoCommentCommands()
190 void CommandInterpreter::SetEchoCommentCommands(bool enable) { in SetEchoCommentCommands()
195 void CommandInterpreter::AllowExitCodeOnQuit(bool allow) { in AllowExitCodeOnQuit()
201 bool CommandInterpreter::SetQuitExitCode(int exit_code) { in SetQuitExitCode()
208 int CommandInterpreter::GetQuitExitCode(bool &exited) const { in GetQuitExitCode()
215 void CommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand()
224 bool CommandInterpreter::GetStopCmdSourceOnError() const { in GetStopCmdSourceOnError()
230 bool CommandInterpreter::GetSpaceReplPrompts() const { in GetSpaceReplPrompts()
236 bool CommandInterpreter::GetRepeatPreviousCommand() const { in GetRepeatPreviousCommand()
242 void CommandInterpreter::Initialize() { in Initialize()
480 void CommandInterpreter::Clear() { in Clear()
484 const char *CommandInterpreter::ProcessEmbeddedScriptCommands(const char *arg) { in ProcessEmbeddedScriptCommands()
500 void CommandInterpreter::LoadCommandDictionary() { in LoadCommandDictionary()
886 int CommandInterpreter::GetCommandNamesMatchingPartialString( in GetCommandNamesMatchingPartialString()
901 CommandInterpreter::GetCommandSP(llvm::StringRef cmd_str, bool include_aliases, in GetCommandSP()
1001 bool CommandInterpreter::AddCommand(llvm::StringRef name, in AddCommand()
1023 bool CommandInterpreter::AddUserCommand(llvm::StringRef name, in AddUserCommand()
1053 CommandInterpreter::GetCommandSPExact(llvm::StringRef cmd_str, in GetCommandSPExact()
1095 CommandInterpreter::GetCommandObject(llvm::StringRef cmd_str, in GetCommandObject()
1130 bool CommandInterpreter::CommandExists(llvm::StringRef cmd) const { in CommandExists()
1134 bool CommandInterpreter::GetAliasFullName(llvm::StringRef cmd, in GetAliasFullName()
1164 bool CommandInterpreter::AliasExists(llvm::StringRef cmd) const { in AliasExists()
1168 bool CommandInterpreter::UserCommandExists(llvm::StringRef cmd) const { in UserCommandExists()
1173 CommandInterpreter::AddAlias(llvm::StringRef alias_name, in AddAlias()
1192 bool CommandInterpreter::RemoveAlias(llvm::StringRef alias_name) { in RemoveAlias()
1201 bool CommandInterpreter::RemoveCommand(llvm::StringRef cmd) { in RemoveCommand()
1212 bool CommandInterpreter::RemoveUser(llvm::StringRef alias_name) { in RemoveUser()
1222 void CommandInterpreter::GetHelp(CommandReturnObject &result, in GetHelp()
1282 CommandObject *CommandInterpreter::GetCommandObjectForCommand( in GetCommandObjectForCommand()
1424 CommandObject *CommandInterpreter::BuildAliasResult( in BuildAliasResult()
1492 Status CommandInterpreter::PreprocessCommand(std::string &command) { in PreprocessCommand()
1643 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand()
1654 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand()
1816 void CommandInterpreter::HandleCompletionMatches(CompletionRequest &request) { in HandleCompletionMatches()
1863 void CommandInterpreter::HandleCompletion(CompletionRequest &request) { in HandleCompletion()
1884 CommandInterpreter::GetAutoSuggestionForCommand(llvm::StringRef line) { in GetAutoSuggestionForCommand()
1896 void CommandInterpreter::UpdatePrompt(llvm::StringRef new_prompt) { in UpdatePrompt()
1905 bool CommandInterpreter::Confirm(llvm::StringRef message, bool default_answer) { in Confirm()
1918 CommandInterpreter::GetAlias(llvm::StringRef alias_name) const { in GetAlias()
1928 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); } in HasCommands()
1930 bool CommandInterpreter::HasAliases() const { return (!m_alias_dict.empty()); } in HasAliases()
1932 bool CommandInterpreter::HasUserCommands() const { return (!m_user_dict.empty()); } in HasUserCommands()
1934 bool CommandInterpreter::HasAliasOptions() const { return HasAliases(); } in HasAliasOptions()
1936 void CommandInterpreter::BuildAliasCommandArgs(CommandObject *alias_cmd_obj, in BuildAliasCommandArgs()
2051 int CommandInterpreter::GetOptionArgumentPosition(const char *in_string) { in GetOptionArgumentPosition()
2123 void CommandInterpreter::SourceInitFile(FileSpec file, in SourceInitFile()
2145 void CommandInterpreter::SourceInitFileCwd(CommandReturnObject &result) { in SourceInitFileCwd()
2184 void CommandInterpreter::SourceInitFileHome(CommandReturnObject &result, in SourceInitFileHome()
2211 const char *CommandInterpreter::GetCommandPrefix() { in GetCommandPrefix()
2216 PlatformSP CommandInterpreter::GetPlatform(bool prefer_target_platform) { in GetPlatform()
2230 bool CommandInterpreter::DidProcessStopAbnormally() const { in DidProcessStopAbnormally()
2273 CommandInterpreter::HandleCommands(const StringList &commands, in HandleCommands()
2283 void CommandInterpreter::HandleCommands(const StringList &commands, in HandleCommands()
2417 void CommandInterpreter::HandleCommandsFromFile( in HandleCommandsFromFile()
2425 void CommandInterpreter::HandleCommandsFromFile(FileSpec &cmd_file, in HandleCommandsFromFile()
2539 debugger, IOHandler::Type::CommandInterpreter, input_file_sp, in HandleCommandsFromFile()
2570 bool CommandInterpreter::GetSynchronous() { return m_synchronous_execution; } in GetSynchronous()
2572 void CommandInterpreter::SetSynchronous(bool value) { in SetSynchronous()
2579 void CommandInterpreter::OutputFormattedHelpText(Stream &strm, in OutputFormattedHelpText()
2620 void CommandInterpreter::OutputFormattedHelpText(Stream &strm, in OutputFormattedHelpText()
2631 void CommandInterpreter::OutputHelpText(Stream &strm, llvm::StringRef word_text, in OutputHelpText()
2675 void CommandInterpreter::FindCommandsForApropos( in FindCommandsForApropos()
2704 void CommandInterpreter::FindCommandsForApropos(llvm::StringRef search_word, in FindCommandsForApropos()
2725 ExecutionContext CommandInterpreter::GetExecutionContext() const { in GetExecutionContext()
2731 void CommandInterpreter::OverrideExecutionContext( in OverrideExecutionContext()
2736 void CommandInterpreter::RestoreExecutionContext() { in RestoreExecutionContext()
2741 void CommandInterpreter::GetProcessOutput() { in GetProcessOutput()
2747 void CommandInterpreter::StartHandlingCommand() { in StartHandlingCommand()
2757 void CommandInterpreter::FinishHandlingCommand() { in FinishHandlingCommand()
2765 bool CommandInterpreter::InterruptCommand() { in InterruptCommand()
2771 bool CommandInterpreter::WasInterrupted() const { in WasInterrupted()
2778 void CommandInterpreter::PrintCommandOutput(Stream &stream, in PrintCommandOutput()
2802 bool CommandInterpreter::EchoCommandNonInteractive( in EchoCommandNonInteractive()
2817 void CommandInterpreter::IOHandlerInputComplete(IOHandler &io_handler, in IOHandlerInputComplete()
2908 bool CommandInterpreter::IOHandlerInterrupt(IOHandler &io_handler) { in IOHandlerInterrupt()
2932 bool CommandInterpreter::SaveTranscript( in SaveTranscript()
2984 FileSpec CommandInterpreter::GetCurrentSourceDir() { in GetCurrentSourceDir()
2990 void CommandInterpreter::GetLLDBCommandsFromIOHandler( in GetLLDBCommandsFromIOHandler()
3010 void CommandInterpreter::GetPythonCommandsFromIOHandler( in GetPythonCommandsFromIOHandler()
3030 bool CommandInterpreter::IsActive() { in IsActive()
3035 CommandInterpreter::GetIOHandler(bool force_create, in GetIOHandler()
3067 m_debugger, IOHandler::Type::CommandInterpreter, in GetIOHandler()
3080 CommandInterpreterRunResult CommandInterpreter::RunCommandInterpreter( in RunCommandInterpreter()
3104 CommandInterpreter::ResolveCommandImpl(std::string &command_line, in ResolveCommandImpl()