Lines Matching refs:pipe
261 A parent and child can have one or two way communication over a pipe created by
271 The ``uv_pipe_t`` structure represents more than just `pipe(7)`_ (or ``|``),
275 `pipe(7)`_. When ``uv_spawn`` initializes a ``uv_pipe_t`` due to the
281 .. _pipe(7): https://man7.org/linux/man-pages/man7/pipe.7.html
304 .. rubric:: pipe-echo-server/main.c
305 .. literalinclude:: ../../code/pipe-echo-server/main.c
323 ``\\?\pipe\echo.sock`` format.
351 ``queue`` is the pipe connected to the master process on the other end, along
353 argument of ``uv_pipe_init`` to 1 to indicate this pipe will be used for
355 standard input of the worker, we connect the pipe to ``stdin`` using
383 The ``child_worker`` structure wraps the process, and the pipe between the
395 important to initialize the pipe acting as the IPC channel with the third
397 a readable pipe (from the point of view of the child). Everything is