Lines Matching refs:clsUARTServ
34 clsUARTServ = nullptr; in HdcDaemon()
58 if (clsUARTServ) { in ClearInstanceResource()
59 delete (HdcDaemonUART *)clsUARTServ; in ClearInstanceResource()
61 clsUARTServ = nullptr; in ClearInstanceResource()
82 if (clsUARTServ) { in TryStopInstance()
84 ((HdcDaemonUART *)clsUARTServ)->Stop(); in TryStopInstance()
125 clsUARTServ = new(std::nothrow) HdcDaemonUART(*this); in InitMod()
126 if (clsUARTServ == nullptr) { in InitMod()
130 ((HdcDaemonUART *)clsUARTServ)->Initial(); in InitMod()
272 if (hSession->connType == CONN_SERIAL and clsUARTServ!= nullptr) { in DaemonSessionHandshake()
275 if (clsUARTServ != nullptr) { in DaemonSessionHandshake()
276 (static_cast<HdcDaemonUART *>(clsUARTServ))->OnNewHandshakeOK(hSession->sessionId); in DaemonSessionHandshake()