Home
last modified time | relevance | path

Searched refs:MSG_OOB (Results 1 - 25 of 55) sorted by relevance

123

/third_party/rust/crates/rustix/src/backend/linux_raw/net/
H A Dsend_recv.rs19 /// `MSG_OOB`
20 const OOB = c::MSG_OOB;
33 /// `MSG_OOB`
34 const OOB = c::MSG_OOB;
/third_party/libuv/test/
H A Dtest-tcp-oob.c72 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 Dtest-poll-oob.c78 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 Dsend_recv.rs46 /// `MSG_OOB`
47 const OOB = c::MSG_OOB;
74 /// `MSG_OOB`
75 const OOB = c::MSG_OOB;
/third_party/libuv/src/win/
H A Dwinsock.c335 *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 Dwinsock.c335 *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 Dmod.rs48 pub const MSG_OOB: ::c_int = 1; consts
/third_party/rust/crates/libc/src/unix/newlib/aarch64/
H A Dmod.rs46 pub const MSG_OOB: ::c_int = 1; consts
/third_party/musl/libc-test/src/api/
H A Dsys_socket.c81 C(MSG_OOB) in f()
/third_party/rust/crates/libc/src/unix/newlib/espidf/
H A Dmod.rs79 pub const MSG_OOB: ::c_int = 0x04; consts
/third_party/ltp/testcases/kernel/syscalls/send/
H A Dsend01.c149 .flags = MSG_OOB,
/third_party/ltp/testcases/kernel/syscalls/recv/
H A Drecv01.c98 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 Dmod.rs127 pub const MSG_OOB: ::c_int = 1; consts
/third_party/rust/crates/linux-raw-sys/gen/modules/
H A Dgeneral.h202 #define MSG_OOB 0x1 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Dsocket.h328 #define MSG_OOB 0x0001 macro
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dsocket.h319 #define MSG_OOB 0x0001 macro
/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dsocket.h328 #define MSG_OOB 0x0001 macro
/third_party/musl/porting/liteos_a/kernel/include/sys/
H A Dsocket.h330 #define MSG_OOB 0x0001 macro
/third_party/musl/porting/linux/user/include/sys/
H A Dsocket.h334 #define MSG_OOB 0x0001 macro
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dsocket.h328 #define MSG_OOB 0x0001 macro
/third_party/ltp/testcases/kernel/syscalls/sendto/
H A Dsendto01.c218 .flags = MSG_OOB,
/third_party/ltp/testcases/kernel/syscalls/recvfrom/
H A Drecvfrom01.c118 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 Dsocket.h334 #define MSG_OOB 0x0001 macro
/third_party/python/Lib/
H A Dftplib.py47 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 Dtest_asyncore.py672 self.socket.recv(1024, socket.MSG_OOB)
678 self.socket.send(bytes(chr(244), 'latin-1'), socket.MSG_OOB)

Completed in 20 milliseconds

123