Lines Matching refs:debugger

124 CommandInterpreter::CommandInterpreter(Debugger &debugger,  in CommandInterpreter()  argument
127 : Broadcaster(debugger.GetBroadcasterManager(), in CommandInterpreter()
132 m_debugger(debugger), m_synchronous_execution(synchronous_execution), in CommandInterpreter()
138 debugger.SetScriptLanguage(script_language); in CommandInterpreter()
2375 Debugger &debugger = GetDebugger(); in HandleCommandsFromFile() local
2452 debugger.GetOutputFile()->Printf("Executing commands in '%s'.\n", in HandleCommandsFromFile()
2461 debugger, IOHandler::Type::CommandInterpreter, input_file_sp, in HandleCommandsFromFile()
2469 debugger.GetPrompt(), llvm::StringRef(), in HandleCommandsFromFile()
2471 debugger.GetUseColor(), 0, *this)); in HandleCommandsFromFile()
2472 const bool old_async_execution = debugger.GetAsyncExecution(); in HandleCommandsFromFile()
2476 debugger.SetAsyncExecution(false); in HandleCommandsFromFile()
2480 debugger.RunIOHandler(io_handler_sp); in HandleCommandsFromFile()
2485 debugger.SetAsyncExecution(old_async_execution); in HandleCommandsFromFile()
2899 Debugger &debugger = GetDebugger(); in GetLLDBCommandsFromIOHandler() local
2901 new IOHandlerEditline(debugger, IOHandler::Type::CommandList, in GetLLDBCommandsFromIOHandler()
2906 debugger.GetUseColor(), in GetLLDBCommandsFromIOHandler()
2913 debugger.PushIOHandler(io_handler_sp); in GetLLDBCommandsFromIOHandler()
2915 debugger.RunIOHandler(io_handler_sp); in GetLLDBCommandsFromIOHandler()
2922 Debugger &debugger = GetDebugger(); in GetPythonCommandsFromIOHandler() local
2924 new IOHandlerEditline(debugger, IOHandler::Type::PythonCode, in GetPythonCommandsFromIOHandler()
2929 debugger.GetUseColor(), in GetPythonCommandsFromIOHandler()
2936 debugger.PushIOHandler(io_handler_sp); in GetPythonCommandsFromIOHandler()
2938 debugger.RunIOHandler(io_handler_sp); in GetPythonCommandsFromIOHandler()