Lines Matching defs:flags
151 handle->flags |= UV_HANDLE_CLOSING;
258 assert(handle->flags & UV_HANDLE_CLOSING);
259 assert(!(handle->flags & UV_HANDLE_CLOSED));
303 assert(handle->flags & UV_HANDLE_CLOSING);
304 assert(!(handle->flags & UV_HANDLE_CLOSED));
305 handle->flags |= UV_HANDLE_CLOSED;
327 handle->flags ^= UV_HANDLE_CLOSED;
396 (loop->flags & UV_LOOP_REAP_CHILDREN) == 0 &&
682 int flags;
697 flags = r | O_NONBLOCK;
699 flags = r & ~O_NONBLOCK;
702 r = fcntl(fd, F_SETFL, flags);
713 int flags;
716 flags = 0;
718 flags = FD_CLOEXEC;
721 r = fcntl(fd, F_SETFD, flags);
731 ssize_t uv__recvmsg(int fd, struct msghdr* msg, int flags) {
739 rc = recvmsg(fd, msg, flags | MSG_CMSG_CLOEXEC);
748 rc = recvmsg(fd, msg, flags);
1058 int uv__open_cloexec(const char* path, int flags) {
1062 fd = open(path, flags | O_CLOEXEC);
1071 fd = open(path, flags);