Lines Matching defs:Driver
1 //===-- Driver.cpp ----------------------------------------------*- C++ -*-===//
9 #include "Driver.h"
91 static Driver *g_driver = nullptr;
93 // In the Driver::MainLoop, we change the terminal settings. This function is
102 Driver::Driver()
103 : SBBroadcaster("Driver"), m_debugger(SBDebugger::Create(false)) {
110 Driver::~Driver() {
115 void Driver::OptionData::AddInitialCommand(std::string command,
147 void Driver::WriteCommandsForSourcing(CommandPlacement placement,
179 SBError Driver::ProcessArgs(const opt::InputArgList &args, bool &exiting) {
182 // This is kind of a pain, but since we make the debugger in the Driver's
184 // files yet. So we don't read them in in the Driver constructor, then set
427 int Driver::MainLoop() {
626 void Driver::UpdateWindowSize() {
801 Driver driver;