• Home
  • Raw
  • Download

Lines Matching refs:thisClass

56     Runtime *thisClass = (Runtime *)arg->data;  in CheckStopServer()  local
57 thisClass->serverRunning = true; in CheckStopServer()
58 if (!thisClass->checkFinish) { in CheckStopServer()
62 thisClass->server->PostStopInstanceMessage(); in CheckStopServer()
63 Base::TryCloseHandle((uv_handle_t *)&thisClass->checkServerStop); in CheckStopServer()
69 Runtime *thisClass = static_cast<Runtime *>(arg->data); in StartServer() local
73 thisClass->server = &server; in StartServer()
75 uv_idle_t *idt = &thisClass->checkServerStop; in StartServer()
76 idt->data = thisClass; in StartServer()
86 Runtime *thisClass = (Runtime *)arg->data; in CheckStopDaemon() local
87 thisClass->daemonRunning = true; in CheckStopDaemon()
88 if (!thisClass->checkFinish) { in CheckStopDaemon()
92 thisClass->daemon->PostStopInstanceMessage(); in CheckStopDaemon()
93 Base::TryCloseHandle((uv_handle_t *)&thisClass->checkDaemonStop); in CheckStopDaemon()
98 Runtime *thisClass = static_cast<Runtime *>(arg->data); in StartDaemon() local
101 thisClass->daemon = &daemon; in StartDaemon()
103 uv_idle_t *idt = &thisClass->checkDaemonStop; in StartDaemon()
104 idt->data = thisClass; in StartDaemon()
130 Runtime *thisClass = (Runtime *)handle->data; in DoCheck() local
132 int checkRet = thisClass->CheckServerDaemonReady(); in DoCheck()
139 switch (thisClass->checkType) { in DoCheck()
141 thisClass->bCheckResult = TestShellExecute(thisClass); in DoCheck()
144 thisClass->bCheckResult = TestBaseCommand(thisClass); in DoCheck()
147 thisClass->bCheckResult = TestFileCommand(thisClass); in DoCheck()
150 thisClass->bCheckResult = TestForwardCommand(thisClass); in DoCheck()
153 thisClass->bCheckResult = TestAppCommand(thisClass); in DoCheck()
160 thisClass->checkFinish = true; in DoCheck()
168 auto thisClass = (Runtime *)req->data; in Initial() local
169 thisClass->serverRunning = false; in Initial()
174 auto thisClass = (Runtime *)req->data; in Initial() local
175 thisClass->daemonRunning = false; in Initial()