Lines Matching refs:thisClass
115 HdcClient *thisClass = (HdcClient *)handle->data; in DoCtrlServiceWork() local
116 string &strCmd = thisClass->command; in DoCtrlServiceWork()
117 …if (!strncmp(thisClass->command.c_str(), CMDSTR_SERVICE_START.c_str(), CMDSTR_SERVICE_START.size()… in DoCtrlServiceWork()
118 thisClass->StartKillServer(thisClass->command.c_str(), true); in DoCtrlServiceWork()
119 …} else if (!strncmp(thisClass->command.c_str(), CMDSTR_SERVICE_KILL.c_str(), CMDSTR_SERVICE_KILL.s… in DoCtrlServiceWork()
120 thisClass->StartKillServer(thisClass->command.c_str(), false); in DoCtrlServiceWork()
122 …} else if (!strncmp(thisClass->command.c_str(), CMDSTR_GENERATE_KEY.c_str(), CMDSTR_GENERATE_KEY.s… in DoCtrlServiceWork()
384 HdcClient *thisClass = (HdcClient *)handle->data; in CommandWorker() local
385 if (++thisClass->debugRetryCount > maxWaitRetry) { in CommandWorker()
387 uv_stop(thisClass->loopMain); in CommandWorker()
392 if (!thisClass->channel->handshakeOK) { in CommandWorker()
398 if (!HostUpdater::ConfirmCommand(thisClass->command, closeInput)) { in CommandWorker()
400 uv_stop(thisClass->loopMain); in CommandWorker()
401 WRITE_LOG(LOG_DEBUG, "Cmd \'%s\' has been canceld", thisClass->command.c_str()); in CommandWorker()
406 if (tcgetattr(STDIN_FILENO, &thisClass->terminalState)) { in CommandWorker()
421 thisClass->Send(thisClass->channel->channelId, in CommandWorker()
422 … const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(thisClass->command.c_str())), in CommandWorker()
423 thisClass->command.size() + 1); in CommandWorker()
440 HdcClient *thisClass = (HdcClient *)hChannel->clsChannel; in ReadStd() local
445 thisClass->Send(hChannel->channelId, reinterpret_cast<uint8_t *>(cmd), strlen(cmd)); in ReadStd()
503 HdcClient *thisClass = (HdcClient *)connection->data; in Connect() local
505 HChannel hChannel = reinterpret_cast<HChannel>(thisClass->channel); in Connect()
508 thisClass->FreeChannel(hChannel->channelId); in Connect()
511 thisClass->BindLocalStd(hChannel); in Connect()