Searched refs:MSG_DONTWAIT (Results 1 - 10 of 10) sorted by relevance

/haiku/src/tests/system/network/
H A Dunix_send_test.c35 ret = send(fds[0], &buf[0], bufLen, MSG_DONTWAIT);
H A Dunix_recv_test.c34 ret = recv(fds[0], &buf[0], bufLen, MSG_DONTWAIT);
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixDatagramEndpoint.cpp218 if ((flags & ~(MSG_DONTWAIT)) != 0)
222 if ((flags & MSG_DONTWAIT) == 0) {
330 if ((flags & ~(MSG_DONTWAIT)) != 0)
334 if ((flags & MSG_DONTWAIT) == 0) {
H A DUnixStreamEndpoint.cpp382 if ((flags & ~(MSG_DONTWAIT)) != 0)
386 if ((flags & MSG_DONTWAIT) == 0) {
476 if ((flags & ~(MSG_DONTWAIT)) != 0)
480 if ((flags & MSG_DONTWAIT) == 0) {
/haiku/src/bin/debug/strace/
H A Dnetwork.cpp36 FLAG_INFO_ENTRY(MSG_DONTWAIT),
/haiku/headers/private/net/
H A DProtocolUtilities.h216 if ((flags & ~(MSG_DONTWAIT | MSG_PEEK)) != 0)
373 if ((flags & MSG_DONTWAIT) != 0)
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A DL2capEndpoint.cpp385 if ((flags & MSG_DONTWAIT) == 0) {
394 flags |= MSG_DONTWAIT;
476 while (gStackModule->fifo_dequeue_buffer(&fSendQueue, MSG_DONTWAIT, 0, &buffer) >= 0) {
/haiku/src/add-ons/kernel/network/stack/
H A Dutility.cpp219 MSG_DONTWAIT - ignores the timeout and never wait for a buffer; if your
229 if ((flags & ~(MSG_DONTWAIT | MSG_PEEK)) != 0)
233 const bool dontWait = (flags & MSG_DONTWAIT) != 0 || timeout == 0;
/haiku/headers/posix/sys/
H A Dsocket.h120 #define MSG_DONTWAIT 0x0080 /* this message should be nonblocking */ macro
/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DTCPEndpoint.cpp817 if ((flags & ~(MSG_DONTWAIT | MSG_OOB | MSG_EOF)) != 0)
830 if ((flags & MSG_DONTWAIT) == 0) {
934 if ((flags & ~(MSG_DONTWAIT | MSG_WAITALL | MSG_PEEK)) != 0)
952 if ((flags & MSG_DONTWAIT) == 0) {
961 if (flags & MSG_DONTWAIT)

Completed in 84 milliseconds