Home
last modified time | relevance | path

Searched refs:CMIDriverBase (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMIDriverBase.cpp25 CMIDriverBase::CMIDriverBase() in CMIDriverBase() function in CMIDriverBase
36 CMIDriverBase::~CMIDriverBase() { m_pDriverFallThru = NULL; } in ~CMIDriverBase()
52 bool CMIDriverBase::DoFallThruToAnotherDriver(const CMIUtilString &vCmd, in DoFallThruToAnotherDriver()
69 bool CMIDriverBase::SetDriverToFallThruTo(const CMIDriverBase &vrOtherDriver) { in SetDriverToFallThruTo()
88 bool CMIDriverBase::SetDriverParent(const CMIDriverBase &vrOtherDriver) { in SetDriverParent()
107 CMIDriverBase *CMIDriverBase::GetDriversParent() const { in GetDriversParent()
122 CMIDriverBase *CMIDriverBase::GetDriverToFallThruTo() const { in GetDriverToFallThruTo()
138 FILE *CMIDriverBase::GetStdin() const { in GetStdin()
153 FILE *CMIDriverBase::GetStdout() const { in GetStdout()
168 FILE *CMIDriverBase::GetStderr() const { in GetStderr()
[all …]
H A DMIDriverBase.h35 class CMIDriverBase {
38 /* ctor */ CMIDriverBase();
40 CMIDriverBase *GetDriverToFallThruTo() const;
41 CMIDriverBase *GetDriversParent() const;
45 /* dtor */ virtual ~CMIDriverBase();
49 virtual bool SetDriverToFallThruTo(const CMIDriverBase &vrOtherDriver);
50 virtual bool SetDriverParent(const CMIDriverBase &vrOtherDriver);
62 CMIDriverBase *m_pDriverFallThru; // Child driver to use should *this driver
64 CMIDriverBase *m_pDriverParent; // The parent driver who passes work to *this
H A DMICmnLLDBDebugger.h26 class CMIDriverBase; variable
47 bool SetDriver(const CMIDriverBase &vClientDriver);
48 CMIDriverBase &GetDriver() const;
122 CMIDriverBase
H A DMIDriver.h39 public CMIDriverBase,
111 bool SetDriverToFallThruTo(const CMIDriverBase &vrOtherDriver) override;
H A DMIDriver.cpp333 bool CMIDriver::SetDriverToFallThruTo(const CMIDriverBase &vrOtherDriver) { in SetDriverToFallThruTo()
334 m_pDriverFallThru = const_cast<CMIDriverBase *>(&vrOtherDriver); in SetDriverToFallThruTo()
727 CMIDriverBase *pOtherDriver = GetDriverToFallThruTo(); in DoFallThruToAnotherDriver()
H A DMICmnLLDBDebugger.cpp254 bool CMICmnLLDBDebugger::SetDriver(const CMIDriverBase &vClientDriver) { in SetDriver()
255 m_pClientDriver = const_cast<CMIDriverBase *>(&vClientDriver); in SetDriver()
268 CMIDriverBase &CMICmnLLDBDebugger::GetDriver() const { in GetDriver()