Home
last modified time | relevance | path

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

/developtools/hdc/src/common/
Dchannel.cpp463 thisClass->ChannelSendSessionCtrlMsg(ctrl, hChannel->targetSessionId); in FreeChannelOpeate()
567 void HdcChannelBase::EchoToAllChannelsViaSessionId(uint32_t targetSessionId, const string &echo) in EchoToAllChannelsViaSessionId() argument
571 if (!hChannel->isDead && hChannel->targetSessionId == targetSessionId) { in EchoToAllChannelsViaSessionId()
572 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.h503 uint32_t targetSessionId; member
/developtools/hdc/src/host/
Dserver.h33 virtual void EchoToClientsForSession(uint32_t targetSessionId, const string &echo);
Dserver.cpp602 HSession hSessionByQuery = AdminSession(OP_QUERY, hChannel->targetSessionId, nullptr); in FetchCommand()
858 hChannel->targetSessionId = hSession->sessionId; in AttachChannel()
1001 void HdcServer::EchoToClientsForSession(uint32_t targetSessionId, const string &echo) in EchoToClientsForSession() argument
1004 WRITE_LOG(LOG_INFO, "%s:%u %s", __FUNCTION__, targetSessionId, echo.c_str()); in EchoToClientsForSession()
1005 hSfc->EchoToAllChannelsViaSessionId(targetSessionId, echo); in EchoToClientsForSession()
Dserver_for_client.cpp578 HSession hSession = FindAliveSession(hChannel->targetSessionId); in TaskCommand()