/third_party/rust/crates/rustix/src/backend/linux_raw/net/ |
H A D | send_recv.rs | 11 /// `MSG_DONTWAIT` 12 const DONTWAIT = c::MSG_DONTWAIT; 29 /// `MSG_DONTWAIT` 30 const DONTWAIT = c::MSG_DONTWAIT;
|
/third_party/rust/crates/rustix/src/backend/libc/net/ |
H A D | send_recv.rs | 23 /// `MSG_DONTWAIT` 25 const DONTWAIT = c::MSG_DONTWAIT; 57 /// `MSG_DONTWAIT` 59 const DONTWAIT = c::MSG_DONTWAIT;
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | common.h | 71 #ifndef MSG_DONTWAIT 72 #define MSG_DONTWAIT 0 /* not supported */ macro 405 #ifndef MSG_DONTWAIT 406 #define MSG_DONTWAIT 0 macro
|
/third_party/rust/crates/linux-raw-sys/gen/modules/ |
H A D | general.h | 163 #define MSG_DONTWAIT 0x40 macro 208 #define MSG_DONTWAIT 0x40 macro
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | common.h | 83 #ifndef MSG_DONTWAIT 84 #define MSG_DONTWAIT 0 /* not supported */ macro 420 #ifndef MSG_DONTWAIT 421 #define MSG_DONTWAIT 0 macro
|
/third_party/ltp/testcases/kernel/containers/netns/ |
H A D | netns_netlink.c | 69 len = recv(fd, nlh, sizeof(buffer), MSG_DONTWAIT); in child_func()
|
/third_party/rust/crates/libc/src/unix/newlib/arm/ |
H A D | mod.rs | 50 pub const MSG_DONTWAIT: ::c_int = 4; consts
|
/third_party/rust/crates/libc/src/unix/newlib/aarch64/ |
H A D | mod.rs | 48 pub const MSG_DONTWAIT: ::c_int = 4; consts
|
/third_party/musl/src/network/ |
H A D | netlink.c | 31 r = recv(fd, u.buf, sizeof(u.buf), MSG_DONTWAIT); in __netlink_enumerate()
|
/third_party/rust/crates/libc/src/unix/newlib/espidf/ |
H A D | mod.rs | 81 pub const MSG_DONTWAIT: ::c_int = 0x08; consts
|
/third_party/ltp/testcases/kernel/syscalls/send/ |
H A D | send02.c | 79 TEST(recv(sock, recvbuf, RECVSIZE, MSG_DONTWAIT)); in check_recv()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | netlink.c | 48 left = recvfrom(sock, buf, sizeof(buf), MSG_DONTWAIT, in netlink_receive()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | netlink.c | 48 left = recvfrom(sock, buf, sizeof(buf), MSG_DONTWAIT, in netlink_receive()
|
/third_party/ltp/testcases/network/stress/ns-tools/ |
H A D | ns-mcast_receiver.c | 408 msglen = recvfrom(sd, msgbuf, msgbuf_size, MSG_DONTWAIT, in receive_mcast()
|
/third_party/rust/crates/libc/src/unix/newlib/horizon/ |
H A D | mod.rs | 129 pub const MSG_DONTWAIT: ::c_int = 4; consts
|
/third_party/pulseaudio/src/modules/rtp/ |
H A D | sap.c | 127 if ((k = sendmsg(c->fd, &m, MSG_DONTWAIT)) < 0) in pa_sap_send()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | socket.h | 334 #define MSG_DONTWAIT 0x0040 macro
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | socket.h | 325 #define MSG_DONTWAIT 0x0040 macro
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | socket.h | 334 #define MSG_DONTWAIT 0x0040 macro
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | socket.h | 336 #define MSG_DONTWAIT 0x0040 macro
|
/third_party/musl/porting/linux/user/include/sys/ |
H A D | socket.h | 340 #define MSG_DONTWAIT 0x0040 macro
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | socket.h | 334 #define MSG_DONTWAIT 0x0040 macro
|
/third_party/musl/include/sys/ |
H A D | socket.h | 340 #define MSG_DONTWAIT 0x0040 macro
|
/third_party/lwip/src/api/ |
H A D | sockets.c | 959 if (flags & MSG_DONTWAIT) { in lwip_recv_tcp() 1130 if (flags & MSG_DONTWAIT) { in lwip_recvfrom_udp_raw() 1332 LWIP_ERROR("lwip_recvmsg: unsupported flags", (flags & ~(MSG_PEEK|MSG_DONTWAIT)) == 0, in lwip_recvmsg() 1380 /* pass MSG_DONTWAIT to lwip_recv_tcp() to prevent waiting for more data */ in lwip_recvmsg() 1381 recv_flags |= MSG_DONTWAIT; in lwip_recvmsg() 1457 ((flags & MSG_DONTWAIT) ? NETCONN_DONTBLOCK : 0)); in lwip_send() 1500 LWIP_ERROR("lwip_sendmsg: unsupported flags", (flags & ~(MSG_DONTWAIT | MSG_MORE)) == 0, in lwip_sendmsg_internal() 1511 ((flags & MSG_DONTWAIT) ? NETCONN_DONTBLOCK : 0)); in lwip_sendmsg_internal()
|
/third_party/ltp/lib/ |
H A D | tst_rtnetlink.c | 180 MSG_DONTWAIT | MSG_PEEK | MSG_TRUNC); in tst_rtnl_recv()
|