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