Lines Matching defs:Driver

1 //===-- Driver.cpp ----------------------------------------------*- C++ -*-===//
10 #include "Driver.h"
46 static Driver *g_driver = NULL;
48 // In the Driver::MainLoop, we change the terminal settings. This function is
117 Driver::Driver () :
118 SBBroadcaster ("Driver"),
138 Driver::~Driver ()
145 Driver::CloseIOChannelFile ()
217 ShowUsage (FILE *out, OptionDefinition *option_table, Driver::OptionData data)
312 Driver::OptionData::OptionSet options_seen;
313 Driver::OptionData::OptionSet::iterator pos;
388 Driver::OptionData::OptionData () :
406 Driver::OptionData::~OptionData ()
411 Driver::OptionData::Clear ()
427 Driver::ResetOptionValues ()
433 Driver::GetFilename() const
441 Driver::GetCrashLogFilename() const
449 Driver::GetScriptLanguage() const
455 Driver::GetNumSourceCommandFiles () const
461 Driver::GetSourceCommandFileAtIndex (uint32_t idx) const
469 Driver::GetDebugMode() const
481 Driver::ParseArgs (int argc, const char *argv[], FILE *out_fh, bool &exit)
538 // This is kind of a pain, but since we make the debugger in the Driver's constructor, we can't
540 // Driver constructor, then set the flags back to "read them in" here, and then if we see the
777 Driver::GetProcessSTDOUT ()
792 Driver::GetProcessSTDERR ()
807 Driver::UpdateSelectedThread ()
873 Driver::HandleBreakpointEvent (const SBEvent &event)
915 Driver::HandleProcessEvent (const SBEvent &event)
1039 Driver::HandleThreadEvent (const SBEvent &event)
1061 Driver::HandleIOEvent (const SBEvent &event)
1136 Driver::MasterThreadBytesReceived (void *baton, const void *src, size_t src_len)
1138 Driver *driver = (Driver*)baton;
1143 Driver::GetFromMaster (const char *src, size_t src_len)
1153 Driver::EditLineInputReaderCallback
1162 Driver *driver = (Driver *)baton;
1222 Driver::MainLoop ()
1313 master_out_comm.SetReadThreadBytesReceivedCallback(Driver::MasterThreadBytesReceived, this);
1349 Driver::EditLineInputReaderCallback, // callback
1630 Driver::ReadyForCommand ()
1635 BroadcastEventByType (Driver::eBroadcastBitReadyForInput, true);
1640 Driver::ResizeWindow (unsigned short col)
1715 Driver driver;