Home
last modified time | relevance | path

Searched refs:connType (Results 1 – 8 of 8) sorted by relevance

/developtools/hdc/src/common/
Dsession.cpp207 if ((hs->connType != CONN_SERIAL) or (hs->hUART == nullptr)) { in EnumUARTDeviceRegister()
226 if (hs->connType != CONN_USB) { in EnumUSBDeviceRegister()
263 if (hs->connType == CONN_USB) { in QueryUSBDeviceRegister()
359 switch (hSession->connType) { in MallocSessionByConnectType()
406 HSession HdcSessionBase::MallocSession(bool serverOrDaemon, const ConnType connType, void *classMod… in MallocSession() argument
421 hSession->connType = connType; in MallocSession()
445 hSession->sessionId, hSession->connType); in MallocSession()
490 if (hSession->connType == CONN_USB) { in FreeSessionByConnectType()
513 if (CONN_SERIAL == hSession->connType) { in FreeSessionByConnectType()
575 if (hSession->connType == CONN_TCP) { in FreeSessionContinue()
[all …]
Ddefine_plus.h387 uint8_t connType; // ConnType member
433 oss << " connType:" << unsigned(connType); in ToDebugString()
445 connType = CONN_USB; in HdcSession()
524 uint8_t connType; member
Dsession.h88 …virtual HSession MallocSession(bool serverOrDaemon, const ConnType connType, void *classModule, ui…
/developtools/hdc/src/host/
Dserver.cpp227 switch (hdi->connType) { in BuildDaemonVisableLine()
523 hSession->connType); in FetchCommand()
776 uint8_t connType = 0; in CreateConnect() local
778 connType = CONN_TCP; in CreateConnect()
784 connType = CONN_SERIAL; in CreateConnect()
788 connType = CONN_USB; in CreateConnect()
798 di.connType = connType; in CreateConnect()
809 if (connType == CONN_TCP) { in CreateConnect()
811 } else if (connType == CONN_SERIAL) { in CreateConnect()
Dhost_usb.cpp328 di.connType = CONN_USB; in UpdateUSBDaemonInfo()
Dhost_uart.cpp420 diNew.connType = CONN_SERIAL; in EnumSerialPort()
Dserver_for_client.cpp244 di.connType = CONN_TCP; in OrderFindTargets()
/developtools/hdc/src/daemon/
Ddaemon.cpp272 if (hSession->connType == CONN_SERIAL and clsUARTServ!= nullptr) { in DaemonSessionHandshake()