Lines Matching defs:flags
64 unsigned int flags) {
73 if (flags & ~UV_PIPE_NO_TRUNCATE)
85 if (flags & UV_PIPE_NO_TRUNCATE)
135 handle->flags |= UV_HANDLE_BOUND;
190 int flags;
193 flags = 0;
217 flags |= UV_HANDLE_READABLE;
219 flags |= UV_HANDLE_WRITABLE;
221 return uv__stream_open((uv_stream_t*)handle, fd, flags);
252 unsigned int flags,
260 if (flags & ~UV_PIPE_NO_TRUNCATE)
272 if (flags & UV_PIPE_NO_TRUNCATE)
491 int flags = O_CLOEXEC;
494 flags |= UV_FS_O_NONBLOCK;
496 if (pipe2(temp, flags))
499 if (flags & UV_FS_O_NONBLOCK) {
534 int uv__make_pipe(int fds[2], int flags) {
536 flags & UV_NONBLOCK_PIPE,
537 flags & UV_NONBLOCK_PIPE);