HomeSort by: relevance | last modified time | path
    Searched refs:UV_NAMED_PIPE (Results 1 - 21 of 21) sorted by relevancy

  /src/external/mit/libuv/dist/src/win/
stream.c 40 case UV_NAMED_PIPE:
59 case UV_NAMED_PIPE:
80 case UV_NAMED_PIPE:
103 } else if (handle->type == UV_NAMED_PIPE) {
131 case UV_NAMED_PIPE:
159 if (handle->type != UV_NAMED_PIPE || !((uv_pipe_t*) handle)->ipc) {
184 case UV_NAMED_PIPE:
222 if (handle->type == UV_NAMED_PIPE)
243 if (handle->type != UV_NAMED_PIPE)
handle.c 50 return UV_NAMED_PIPE;
83 case UV_NAMED_PIPE:
handle-inl.h 112 case UV_NAMED_PIPE:
req-inl.h 123 case UV_NAMED_PIPE: \
process-stdio.c 240 assert(fdopt.data.stream->type == UV_NAMED_PIPE);
316 } else if (stream->type == UV_NAMED_PIPE &&
pipe.c 115 uv__stream_init(loop, (uv_stream_t*)handle, UV_NAMED_PIPE);
1253 assert(handle->type == UV_NAMED_PIPE);
1324 assert(handle->type == UV_NAMED_PIPE);
2122 assert(handle->type == UV_NAMED_PIPE);
2179 assert(handle->type == UV_NAMED_PIPE);
2230 assert(handle->type == UV_NAMED_PIPE);
2267 assert(handle->type == UV_NAMED_PIPE);
2297 assert(handle->type == UV_NAMED_PIPE);
2374 assert(pipe->type == UV_NAMED_PIPE);
core.c 602 case UV_NAMED_PIPE:
process.c 1121 fdopt->data.stream->type == UV_NAMED_PIPE &&
fs.c 2214 case UV_NAMED_PIPE:
  /src/external/mit/libuv/dist/test/
test-getters-setters.c 37 ASSERT_OK(strcmp(uv_handle_type_name(UV_NAMED_PIPE), "pipe"));
73 pipe = malloc(uv_handle_size(UV_NAMED_PIPE));
76 ASSERT_EQ(uv_handle_get_type((uv_handle_t*)pipe), UV_NAMED_PIPE);
test-ipc-send-recv.c 123 if (pending == UV_NAMED_PIPE)
209 ctx.expected_type = UV_NAMED_PIPE;
332 ASSERT(pending == UV_NAMED_PIPE || pending == UV_TCP);
334 if (pending == UV_NAMED_PIPE)
test-ping-pong.c 321 ASSERT_EQ(uv_guess_handle((uv_file) fds[0]), UV_NAMED_PIPE);
322 ASSERT_EQ(uv_guess_handle((uv_file) fds[1]), UV_NAMED_PIPE);
353 ASSERT_EQ(uv_guess_handle(fds[0]), UV_NAMED_PIPE);
354 ASSERT_EQ(uv_guess_handle(fds[1]), UV_NAMED_PIPE);
test-stdio-over-pipes.c 225 ASSERT_EQ(UV_NAMED_PIPE, uv_guess_handle(0));
226 ASSERT_EQ(UV_NAMED_PIPE, uv_guess_handle(1));
benchmark-multi-accept.c 121 else if (ipc_pipe->type == UV_NAMED_PIPE)
189 else if (type == UV_NAMED_PIPE)
302 else if (server_handle->type == UV_NAMED_PIPE)
test-pipe-sendmsg.c 86 ASSERT_EQ(pending, UV_NAMED_PIPE);
test-fs.c 1712 case UV_NAMED_PIPE:
  /src/external/mit/libuv/dist/src/unix/
stream.c 545 case UV_NAMED_PIPE:
611 case UV_NAMED_PIPE:
742 case UV_NAMED_PIPE:
1041 is_ipc = stream->type == UV_NAMED_PIPE && ((uv_pipe_t*) stream)->ipc;
1094 } else if (errno == ECONNRESET && stream->type == UV_NAMED_PIPE) {
1163 stream->type == UV_NAMED_PIPE);
1195 stream->type == UV_NAMED_PIPE ||
1251 assert(stream->type == UV_TCP || stream->type == UV_NAMED_PIPE);
1300 stream->type == UV_NAMED_PIPE ||
1311 if (stream->type != UV_NAMED_PIPE || !((uv_pipe_t*)stream)->ipc
    [all...]
tty.c 429 return UV_FILE; /* XXX UV_NAMED_PIPE? */
432 return UV_NAMED_PIPE;
469 return UV_NAMED_PIPE;
475 return UV_NAMED_PIPE;
core.c 166 case UV_NAMED_PIPE:
248 if (handle->type == UV_TCP || handle->type == UV_NAMED_PIPE)
344 case UV_NAMED_PIPE:
817 case UV_NAMED_PIPE:
pipe.c 49 uv__stream_init(loop, (uv_stream_t*)handle, UV_NAMED_PIPE);
process.c 204 if (container->data.stream->type != UV_NAMED_PIPE)

Completed in 57 milliseconds