• Home
  • Raw
  • Download

Lines Matching refs:hdi

200     HDaemonInfo hdi = nullptr;  in SendToDaemon()  local
204 ptrServer->AdminDaemonMap(OP_QUERY, hChannel->connectKey, hdi); in SendToDaemon()
205 if (hdi == nullptr) { in SendToDaemon()
208 if (hdi->connStatus != STATUS_CONNECTED) { in SendToDaemon()
211 if (!hdi->hSession) { in SendToDaemon()
214 …if (ptrServer->Send(hdi->hSession->sessionId, hChannel->channelId, commandFlag, bufPtr, bufSize) <… in SendToDaemon()
258 HDaemonInfo hdi = nullptr; in OrderConnecTargetResult() local
262 ptrServer->AdminDaemonMap(OP_GET_ANY, target, hdi); in OrderConnecTargetResult()
264 ptrServer->AdminDaemonMap(OP_QUERY, target, hdi); in OrderConnecTargetResult()
266 if (hdi && hdi->connStatus == STATUS_CONNECTED) { in OrderConnecTargetResult()
275 thisClass->EchoClient(hChannel, MSG_OK, const_cast<char *>(hdi->version.c_str())); in OrderConnecTargetResult()
374 HDaemonInfo hdi = nullptr; in GetTargetList() local
375 string sRet = ptrServer->AdminDaemonMap(cmd, STRING_EMPTY, hdi); in GetTargetList()
389 HDaemonInfo hdi = nullptr; in GetAnyTarget() local
390 ptrServer->AdminDaemonMap(OP_GET_ANY, STRING_EMPTY, hdi); in GetAnyTarget()
391 if (!hdi) { in GetAnyTarget()
396 string connectKey = hdi->connectKey; in GetAnyTarget()
408 HDaemonInfo hdi = nullptr; in WaitForAny() local
409 ptrServer->AdminDaemonMap(OP_WAIT_FOR_ANY, STRING_EMPTY, hdi); in WaitForAny()
410 if (!hdi) { in WaitForAny()
414 string key = hdi->connectKey; in WaitForAny()
685 HDaemonInfo hdi = nullptr; in FindAliveSessionFromDaemonMap() local
687 ptrServer->AdminDaemonMap(OP_QUERY, hChannel->connectKey, hdi); in FindAliveSessionFromDaemonMap()
688 if (!hdi) { in FindAliveSessionFromDaemonMap()
692 if (hdi->connStatus != STATUS_CONNECTED) { in FindAliveSessionFromDaemonMap()
696 if (hdi->hSession->isDead) { in FindAliveSessionFromDaemonMap()
700 hSession = reinterpret_cast<HSession>(hdi->hSession); in FindAliveSessionFromDaemonMap()