Lines Matching refs:pipe
38 uv_pipe_t pipe;
92 uv_pipe_t* pipe;
98 pipe = (uv_pipe_t*) handle;
99 ASSERT_PTR_EQ(pipe, &ctx.channel);
111 * the other end of the pipe has closed this UV_EOF is an
118 ASSERT_GT(uv_pipe_pending_count(pipe), 0);
120 pending = uv_pipe_pending_type(pipe);
124 r = uv_pipe_init(ctx.channel.loop, &recv->pipe, 0);
134 } while (uv_pipe_pending_count(pipe) > 0);
157 /* Perform two writes to the same pipe to make sure that on Windows we are
211 r = uv_pipe_init(uv_default_loop(), &ctx.send.pipe, 1);
214 r = uv_pipe_bind(&ctx.send.pipe, TEST_PIPENAME);
217 r = uv_pipe_init(uv_default_loop(), &ctx.send2.pipe, 1);
220 r = uv_pipe_bind(&ctx.send2.pipe, TEST_PIPENAME_2);
305 uv_pipe_t* pipe;
319 pipe = (uv_pipe_t*) handle;
320 ASSERT_PTR_EQ(pipe, &ctx2.channel);
322 while (uv_pipe_pending_count(pipe) > 0) {
331 pending = uv_pipe_pending_type(pipe);
335 r = uv_pipe_init(ctx2.channel.loop, &recv->pipe, 0);