Searched refs:nonblock (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/system/ulib/fdio/
H A Dpipe.c29 static ssize_t zx_pipe_read_internal(zx_handle_t h, void* data, size_t len, int nonblock) { argument
45 if (r == ZX_ERR_SHOULD_WAIT && !nonblock) {
67 static ssize_t zx_pipe_write_internal(zx_handle_t h, const void* data, size_t len, int nonblock) { argument
74 if (r == ZX_ERR_SHOULD_WAIT && !nonblock) {
194 int nonblock = (io->ioflag & IOFLAG_NONBLOCK) || (flags & MSG_DONTWAIT); local
195 return zx_pipe_read_internal(p->h, data, len, nonblock);
206 int nonblock = (io->ioflag & IOFLAG_NONBLOCK) || (flags & MSG_DONTWAIT); local
207 return zx_pipe_write_internal(p->h, data, len, nonblock);
H A Dsocket.c75 int nonblock = sio->io.ioflag & IOFLAG_NONBLOCK; local
92 } else if (r == ZX_ERR_SHOULD_WAIT && !nonblock) {
139 int nonblock = sio->io.ioflag & IOFLAG_NONBLOCK; local
147 if (r == ZX_ERR_SHOULD_WAIT && !nonblock) {

Completed in 27 milliseconds