Lines Matching refs:pipe
159 uv_pipe_t *pipe = reinterpret_cast<uv_pipe_t *>(q);
160 if (!uv_pipe_pending_count(pipe)) {
164 uv_handle_type pending = uv_pipe_pending_type(pipe);
221 thisClass->SendToStream(reinterpret_cast<uv_stream_t *>(&ctxJdwp->pipe), info, pkgSize,
237 thisClass->SendToStream(reinterpret_cast<uv_stream_t *>(&ctxJdwp->pipe),
241 uv_read_start(reinterpret_cast<uv_stream_t *>(&ctxJdwp->pipe), thisClass->alloc_buffer,
253 ctx->pipe.data = ctx;
264 if (loop && !uv_is_closing(reinterpret_cast<uv_handle_t *>(&ctxPoint->pipe))) {
265 uv_close(reinterpret_cast<uv_handle_t *>(&ctxPoint->pipe), nullptr);
286 uv_pipe_init(loop, static_cast<uv_pipe_t *>(&ctxPoint->pipe), 1);
288 uv_pipe_connect(connect, &ctxPoint->pipe, jdwpCtrlName.c_str(), ConnectJdwp);