Lines Matching refs:pipe
26 Whether this pipe is suitable for handle passing between processes.
27 Only a connected pipe that will be passing the handles should have this flag
28 set, not the listening pipe that uv_accept is called on.
38 Initialize a pipe handle. The `ipc` argument is a boolean to indicate if
39 this pipe will be used for handle passing between processes (which may
40 change the bytes on the wire). Only a connected pipe that will be
41 passing the handles should have this flag set, not the listening pipe
46 Open an existing file descriptor or HANDLE as a pipe.
52 it's required that it represents a valid pipe.
56 Bind the pipe to a file path (Unix) or a name (Windows).
69 Bind the pipe to a file path (Unix) or a name (Windows).
86 Connect to the Unix domain socket or the Windows named pipe.
99 Connect to the Unix domain socket or the Windows named pipe.
116 Get the name of the Unix domain socket or the named pipe.
128 Get the name of the Unix domain socket or the named pipe to which the handle
140 Set the number of pending pipe instance handles when the pipe server is
153 and call ``uv_accept(pipe, handle)``.
159 Alters pipe permissions, allowing it to be accessed from processes run by
160 different users. Makes the pipe writable or readable by all users. Mode can
168 Create a pair of connected pipe handles.
180 Equivalent to :man:`pipe(2)` with the `O_CLOEXEC` flag set.