Lines Matching defs:Driver
1 //===-- Driver.cpp ----------------------------------------------*- C++ -*-===//
9 #include "Driver.h"
89 static Driver *g_driver = nullptr;
91 // In the Driver::MainLoop, we change the terminal settings. This function is
100 Driver::Driver()
101 : SBBroadcaster("Driver"), m_debugger(SBDebugger::Create(false)) {
108 Driver::~Driver() {
113 void Driver::OptionData::AddInitialCommand(std::string command,
145 void Driver::WriteCommandsForSourcing(CommandPlacement placement,
177 SBError Driver::ProcessArgs(const opt::InputArgList &args, bool &exiting) {
180 // This is kind of a pain, but since we make the debugger in the Driver's
182 // files yet. So we don't read them in in the Driver constructor, then set
425 int Driver::MainLoop() {
627 void Driver::ResizeWindow(unsigned short col) {
798 Driver driver;