Searched refs:IOFLAG_NONBLOCK (Results 1 – 5 of 5) sorted by relevance
719 bool blocking = !(io->ioflag & IOFLAG_NONBLOCK); in fdio_zxio_pipe_read()725 bool blocking = !(io->ioflag & IOFLAG_NONBLOCK); in fdio_zxio_pipe_write()760 bool blocking = !((io->ioflag & IOFLAG_NONBLOCK) || (flags & MSG_DONTWAIT)); in fdio_zxio_pipe_recvfrom()772 bool blocking = !((io->ioflag & IOFLAG_NONBLOCK) || (flags & MSG_DONTWAIT)); in fdio_zxio_pipe_sendto()782 bool blocking = !((io->ioflag & IOFLAG_NONBLOCK) || (flags & MSG_DONTWAIT)); in fdio_zxio_pipe_recvmsg()805 bool blocking = !((io->ioflag & IOFLAG_NONBLOCK) || (flags & MSG_DONTWAIT)); in fdio_zxio_pipe_sendmsg()
104 io->ioflag |= IOFLAG_NONBLOCK; in socket()216 io2->ioflag |= IOFLAG_NONBLOCK; in accept4()
1062 if (status != ZX_ERR_SHOULD_WAIT || io->ioflag & IOFLAG_NONBLOCK) { in read()1084 if ((status != ZX_ERR_SHOULD_WAIT) || (io->ioflag & IOFLAG_NONBLOCK)) { in write()1128 if ((status != ZX_ERR_SHOULD_WAIT) || (io->ioflag & IOFLAG_NONBLOCK)) { in pread()1172 if ((status != ZX_ERR_SHOULD_WAIT) || (io->ioflag & IOFLAG_NONBLOCK)) { in pwrite()1300 if (io->ioflag & IOFLAG_NONBLOCK) { in fcntl()1331 io->ioflag |= IOFLAG_NONBLOCK; in fcntl()1333 io->ioflag &= ~IOFLAG_NONBLOCK; in fcntl()1526 io->ioflag |= IOFLAG_NONBLOCK; in vopenat()
85 #define IOFLAG_NONBLOCK (1 << 6) macro
27 if (sio->io.ioflag & IOFLAG_NONBLOCK) { in update_blocking_flag()
Completed in 13 milliseconds