Home
last modified time | relevance | path

Searched refs:MSG_FNONBLOCKING (Results 1 – 5 of 5) sorted by relevance

/dragonfly/sys/kern/
H A Dsys_socket.c83 msgflags = MSG_FNONBLOCKING; in soo_read()
85 msgflags = MSG_FNONBLOCKING; in soo_read()
108 msgflags = MSG_FNONBLOCKING; in soo_write()
110 msgflags = MSG_FNONBLOCKING; in soo_write()
H A Duipc_syscalls.c797 if ((flags & (MSG_FNONBLOCKING|MSG_FBLOCKING)) == 0) { in kern_sendmsg()
799 flags |= MSG_FNONBLOCKING; in kern_sendmsg()
980 if (flags == NULL || (*flags & (MSG_FNONBLOCKING|MSG_FBLOCKING)) == 0) { in kern_recvmsg()
983 *flags |= MSG_FNONBLOCKING; in kern_recvmsg()
985 lflags = MSG_FNONBLOCKING; in kern_recvmsg()
H A Duipc_socket.c845 if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT)) in sosend()
991 if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT)) in sosendudp()
1143 if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT)) in sosendtcp()
1383 if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT)) { in soreceive()
1727 if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT)) { in sorecvtcp()
/dragonfly/sys/vfs/fifofs/
H A Dfifo_vnops.c385 flags = MSG_FNONBLOCKING; in fifo_read()
417 flags = MSG_FNONBLOCKING; in fifo_write()
/dragonfly/sys/sys/
H A Dsocket.h440 #define MSG_FNONBLOCKING 0x00020000 /* force non-blocking operation */ macro