Home
last modified time | relevance | path

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

/developtools/hdc/src/common/
Dchannel.cpp465 thisClass->ChannelSendSessionCtrlMsg(ctrl, hChannel->targetSessionId); in FreeChannelOpeate()
569 void HdcChannelBase::EchoToAllChannelsViaSessionId(uint32_t targetSessionId, const string &echo) in EchoToAllChannelsViaSessionId() argument
573 if (!hChannel->isDead && hChannel->targetSessionId == targetSessionId) { in EchoToAllChannelsViaSessionId()
574 WRITE_LOG(LOG_INFO, "%s:%u %s", __FUNCTION__, targetSessionId, echo.c_str()); in EchoToAllChannelsViaSessionId()
Dchannel.h30 void EchoToAllChannelsViaSessionId(uint32_t targetSessionId, const string &echo);
Ddefine_plus.h506 uint32_t targetSessionId; member
/developtools/hdc/src/host/
Dserver.h33 virtual void EchoToClientsForSession(uint32_t targetSessionId, const string &echo);
Dserver.cpp612 HSession hSessionByQuery = AdminSession(OP_QUERY, hChannel->targetSessionId, nullptr); in FetchCommand()
869 hChannel->targetSessionId = hSession->sessionId; in AttachChannel()
1020 void HdcServer::EchoToClientsForSession(uint32_t targetSessionId, const string &echo) in EchoToClientsForSession() argument
1023 WRITE_LOG(LOG_INFO, "%s:%u %s", __FUNCTION__, targetSessionId, echo.c_str()); in EchoToClientsForSession()
1024 hSfc->EchoToAllChannelsViaSessionId(targetSessionId, echo); in EchoToClientsForSession()
Dserver_for_client.cpp588 HSession hSession = FindAliveSession(hChannel->targetSessionId); in TaskCommand()