/third_party/rust/crates/rustix/src/backend/linux_raw/net/ |
H A D | send_recv.rs | 19 /// `MSG_OOB` 20 const OOB = c::MSG_OOB; 33 /// `MSG_OOB` 34 const OOB = c::MSG_OOB;
|
/third_party/libuv/test/ |
H A D | test-tcp-oob.c | 72 ASSERT_NE(-1, recv(fd, lbuf, sizeof(lbuf), MSG_OOB)); in read_cb() 100 r = send(fd, "hello", 5, MSG_OOB); in connection_cb() 105 r = send(fd, "hello", 5, MSG_OOB); in connection_cb()
|
H A D | test-poll-oob.c | 78 n = recv(client_fd, &buffer, 5, MSG_OOB); in poll_cb() 154 r = send(server_fd, "hello", 5, MSG_OOB); in connection_cb()
|
/third_party/rust/crates/rustix/src/backend/libc/net/ |
H A D | send_recv.rs | 46 /// `MSG_OOB` 47 const OOB = c::MSG_OOB; 74 /// `MSG_OOB` 75 const OOB = c::MSG_OOB;
|
/third_party/libuv/src/win/ |
H A D | winsock.c | 335 *flags = MSG_OOB; in uv__wsarecv_workaround() 340 *flags = MSG_PARTIAL | MSG_OOB; in uv__wsarecv_workaround() 433 *flags = MSG_OOB; in uv__wsarecvfrom_workaround() 438 *flags = MSG_PARTIAL | MSG_OOB; in uv__wsarecvfrom_workaround()
|
/third_party/node/deps/uv/src/win/ |
H A D | winsock.c | 335 *flags = MSG_OOB; in uv__wsarecv_workaround() 340 *flags = MSG_PARTIAL | MSG_OOB; in uv__wsarecv_workaround() 433 *flags = MSG_OOB; in uv__wsarecvfrom_workaround() 438 *flags = MSG_PARTIAL | MSG_OOB; in uv__wsarecvfrom_workaround()
|
/third_party/rust/crates/libc/src/unix/newlib/arm/ |
H A D | mod.rs | 48 pub const MSG_OOB: ::c_int = 1; consts
|
/third_party/rust/crates/libc/src/unix/newlib/aarch64/ |
H A D | mod.rs | 46 pub const MSG_OOB: ::c_int = 1; consts
|
/third_party/musl/libc-test/src/api/ |
H A D | sys_socket.c | 81 C(MSG_OOB) in f()
|
/third_party/rust/crates/libc/src/unix/newlib/espidf/ |
H A D | mod.rs | 79 pub const MSG_OOB: ::c_int = 0x04; consts
|
/third_party/ltp/testcases/kernel/syscalls/send/ |
H A D | send01.c | 149 .flags = MSG_OOB,
|
/third_party/ltp/testcases/kernel/syscalls/recv/ |
H A D | recv01.c | 98 PF_INET, SOCK_STREAM, 0, buf, sizeof(buf), MSG_OOB, 99 -1, EINVAL, setup1, cleanup1, "invalid MSG_OOB flag set"}
|
/third_party/rust/crates/libc/src/unix/newlib/horizon/ |
H A D | mod.rs | 127 pub const MSG_OOB: ::c_int = 1; consts
|
/third_party/rust/crates/linux-raw-sys/gen/modules/ |
H A D | general.h | 202 #define MSG_OOB 0x1 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | socket.h | 328 #define MSG_OOB 0x0001 macro
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | socket.h | 319 #define MSG_OOB 0x0001 macro
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | socket.h | 328 #define MSG_OOB 0x0001 macro
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | socket.h | 330 #define MSG_OOB 0x0001 macro
|
/third_party/musl/porting/linux/user/include/sys/ |
H A D | socket.h | 334 #define MSG_OOB 0x0001 macro
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | socket.h | 328 #define MSG_OOB 0x0001 macro
|
/third_party/ltp/testcases/kernel/syscalls/sendto/ |
H A D | sendto01.c | 218 .flags = MSG_OOB,
|
/third_party/ltp/testcases/kernel/syscalls/recvfrom/ |
H A D | recvfrom01.c | 118 PF_INET, SOCK_STREAM, 0, (void *)buf, sizeof(buf), MSG_OOB, 120 -1, EINVAL, setup1, cleanup1, "invalid MSG_OOB flag set"},
|
/third_party/musl/include/sys/ |
H A D | socket.h | 334 #define MSG_OOB 0x0001 macro
|
/third_party/python/Lib/ |
H A D | ftplib.py | 47 MSG_OOB = 0x1 # Process data out of band variable 272 self.sock.sendall(line, MSG_OOB) 800 # overridden as we can't pass MSG_OOB flag to sendall()
|
/third_party/python/Lib/test/ |
H A D | test_asyncore.py | 672 self.socket.recv(1024, socket.MSG_OOB) 678 self.socket.send(bytes(chr(244), 'latin-1'), socket.MSG_OOB)
|