Lines Matching refs:thisClass
117 HdcClient *thisClass = (HdcClient *)handle->data; in DoCtrlServiceWork() local
118 string &strCmd = thisClass->command; in DoCtrlServiceWork()
119 …if (!strncmp(thisClass->command.c_str(), CMDSTR_SERVICE_START.c_str(), CMDSTR_SERVICE_START.size()… in DoCtrlServiceWork()
120 thisClass->StartKillServer(thisClass->command.c_str(), true); in DoCtrlServiceWork()
121 …} else if (!strncmp(thisClass->command.c_str(), CMDSTR_SERVICE_KILL.c_str(), CMDSTR_SERVICE_KILL.s… in DoCtrlServiceWork()
122 thisClass->StartKillServer(thisClass->command.c_str(), false); in DoCtrlServiceWork()
124 …} else if (!strncmp(thisClass->command.c_str(), CMDSTR_GENERATE_KEY.c_str(), CMDSTR_GENERATE_KEY.s… in DoCtrlServiceWork()
387 HdcClient *thisClass = (HdcClient *)handle->data; in CommandWorker() local
388 if (++thisClass->debugRetryCount > maxWaitRetry) { in CommandWorker()
390 uv_stop(thisClass->loopMain); in CommandWorker()
395 if (!thisClass->channel->handshakeOK) { in CommandWorker()
401 if (!HostUpdater::ConfirmCommand(thisClass->command, closeInput)) { in CommandWorker()
403 uv_stop(thisClass->loopMain); in CommandWorker()
404 WRITE_LOG(LOG_DEBUG, "Cmd \'%s\' has been canceld", thisClass->command.c_str()); in CommandWorker()
409 if (tcgetattr(STDIN_FILENO, &thisClass->terminalState)) { in CommandWorker()
424 thisClass->Send(thisClass->channel->channelId, in CommandWorker()
425 … const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(thisClass->command.c_str())), in CommandWorker()
426 thisClass->command.size() + 1); in CommandWorker()
443 HdcClient *thisClass = (HdcClient *)hChannel->clsChannel; in ReadStd() local
449 thisClass->Send(hChannel->channelId, reinterpret_cast<uint8_t *>(cmd), strlen(cmd)); in ReadStd()
507 HdcClient *thisClass = (HdcClient *)connection->data; in Connect() local
509 HChannel hChannel = reinterpret_cast<HChannel>(thisClass->channel); in Connect()
512 thisClass->FreeChannel(hChannel->channelId); in Connect()
515 thisClass->BindLocalStd(hChannel); in Connect()