Home
last modified time | relevance | path

Searched refs:ipc (Results 1 – 14 of 14) sorted by relevance

/libuv/src/unix/
H A Dpipe.c46 int uv_pipe_init(uv_loop_t* loop, uv_pipe_t* handle, int ipc) { in uv_pipe_init() argument
51 handle->ipc = ipc; in uv_pipe_init()
155 if (handle->ipc) in uv__pipe_listen()
419 if (!handle->ipc) in uv_pipe_pending_count()
434 if (!handle->ipc) in uv_pipe_pending_type()
H A Dstream.c1041 is_ipc = stream->type == UV_NAMED_PIPE && ((uv_pipe_t*) stream)->ipc; in uv__read()
1311 if (stream->type != UV_NAMED_PIPE || !((uv_pipe_t*)stream)->ipc) in uv__check_before_write()
/libuv/docs/src/
H A Dpipe.rst24 .. c:member:: int uv_pipe_t.ipc
36 .. c:function:: int uv_pipe_init(uv_loop_t* loop, uv_pipe_t* handle, int ipc)
38 Initialize a pipe handle. The `ipc` argument is a boolean to indicate if
H A Dprocess.rst134 * been initialized with `uv_pipe_init(loop, data.stream, ipc);`,
H A Dstream.rst193 initialized with `ipc` == 1.
/libuv/src/win/
H A Dpipe.c114 int uv_pipe_init(uv_loop_t* loop, uv_pipe_t* handle, int ipc) { in uv_pipe_init() argument
124 handle->ipc = ipc; in uv_pipe_init()
424 if (flags & UV_NONBLOCK_PIPE || parent_pipe->ipc) { in uv__create_stdio_pipe_pair()
1151 if (server->ipc) { in uv__pipe_accept()
1223 if (handle->ipc) { in uv__pipe_listen()
1855 if (handle->ipc) { in uv__pipe_write()
2155 if (handle->ipc) in uv__process_pipe_read_req()
2468 if (pipe->ipc) { in uv_pipe_open()
2491 if (pipe->ipc) { in uv_pipe_open()
2598 if (!handle->ipc) in uv_pipe_pending_count()
[all …]
H A Dstream.c159 if (handle->type != UV_NAMED_PIPE || !((uv_pipe_t*) handle)->ipc) { in uv_write2()
H A Dprocess.c1112 ((uv_pipe_t*) fdopt->data.stream)->ipc) { in uv_spawn()
/libuv/
H A DMakefile.am205 test/test-ipc-heavy-traffic-deadlock-bug.c \
206 test/test-ipc-send-recv.c \
207 test/test-ipc.c \
H A DCMakeLists.txt579 test/test-ipc-heavy-traffic-deadlock-bug.c
580 test/test-ipc-send-recv.c
581 test/test-ipc.c
H A DChangeLog35 * win,pipe: ipc code does not support async read (Jameson Nash)
577 * win,pipe: improve method of obtaining pid for ipc (number201724)
2309 * test,sunos: test-ipc.c lacks newline at EOF (Andrew Paprocki)
2371 * test: fix test-ipc spawn_helper exit_cb (Santiago Gimeno)
2373 * test: fix test-ipc tests (Santiago Gimeno)
2705 * doc: document uv_pipe_t::ipc (Ed Schouten)
3431 * cygwin: disable non-functional ipc handle send (Brad King)
3615 * test: account for multiple handles in one ipc read (John Barboza)
5044 * windows: relay TCP bind errors via ipc (Alexis Campailla)
/libuv/docs/src/guide/
H A Dprocesses.rst285 .. _Named Pipe: https://docs.microsoft.com/en-us/windows/win32/ipc/named-pipes
352 which new file descriptors get sent. It is important to set the ``ipc``
/libuv/test/
H A Dtest-ipc.c292 ASSERT_NE(0, channel->ipc); in spawn_helper()
/libuv/include/
H A Duv.h853 int ipc; /* non-zero if this pipe is used for passing handles */ member
857 UV_EXTERN int uv_pipe_init(uv_loop_t*, uv_pipe_t* handle, int ipc);

Completed in 43 milliseconds