Home
last modified time | relevance | path

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

/developtools/hdc/src/common/
Dchannel.cpp444 thisClass->ChannelSendSessionCtrlMsg(ctrl, hChannel->targetSessionId); in FreeChannelOpeate()
544 void HdcChannelBase::EchoToAllChannelsViaSessionId(uint32_t targetSessionId, const string &echo) in EchoToAllChannelsViaSessionId() argument
548 if (!hChannel->isDead && hChannel->targetSessionId == targetSessionId) { in EchoToAllChannelsViaSessionId()
549 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.h500 uint32_t targetSessionId; member
/developtools/hdc/src/host/
Dserver.h33 virtual void EchoToClientsForSession(uint32_t targetSessionId, const string &echo);
Dserver.cpp616 HSession hSessionByQuery = AdminSession(OP_QUERY, hChannel->targetSessionId, nullptr); in FetchCommand()
872 hChannel->targetSessionId = hSession->sessionId; in AttachChannel()
1015 void HdcServer::EchoToClientsForSession(uint32_t targetSessionId, const string &echo) in EchoToClientsForSession() argument
1018 WRITE_LOG(LOG_INFO, "%s:%u %s", __FUNCTION__, targetSessionId, echo.c_str()); in EchoToClientsForSession()
1019 hSfc->EchoToAllChannelsViaSessionId(targetSessionId, echo); in EchoToClientsForSession()
Dserver_for_client.cpp569 HSession hSession = FindAliveSession(hChannel->targetSessionId); in TaskCommand()