Lines Matching refs:ctxPoint
261 if (!ctxPoint) { in FreeContext()
264 if (loop && !uv_is_closing(reinterpret_cast<uv_handle_t *>(&ctxPoint->pipe))) { in FreeContext()
265 uv_close(reinterpret_cast<uv_handle_t *>(&ctxPoint->pipe), nullptr); in FreeContext()
267 if (ctxPoint->hasNewFd && loop && in FreeContext()
268 !uv_is_closing(reinterpret_cast<uv_handle_t *>(&ctxPoint->newFd))) { in FreeContext()
269 uv_close(reinterpret_cast<uv_handle_t *>(&ctxPoint->newFd), nullptr); in FreeContext()
271 delete ctxPoint; in FreeContext()
272 ctxPoint = nullptr; in FreeContext()
280 ctxPoint = static_cast<HCtxJdwpSimulator>(MallocContext()); in Connect()
281 if (!ctxPoint) { in Connect()
285 connect->data = ctxPoint; in Connect()
286 uv_pipe_init(loop, static_cast<uv_pipe_t *>(&ctxPoint->pipe), 1); in Connect()
288 uv_pipe_connect(connect, &ctxPoint->pipe, jdwpCtrlName.c_str(), ConnectJdwp); in Connect()