/openbmc/linux/tools/testing/selftests/net/af_unix/ |
H A D | test_unix_oob.c | 87 if (recv(fd, c, sizeof(*c), MSG_OOB) < 0) { in read_oob() 138 send(cfd, buf, sizeof(buf), MSG_OOB); in producer() 145 send(cfd, buf, sizeof(buf), MSG_OOB); in producer() 149 send(cfd, buf, sizeof(buf), MSG_OOB); in producer() 156 send(cfd, buf, sizeof(buf), MSG_OOB); in producer() 160 send(cfd, buf, sizeof(buf), MSG_OOB); in producer() 170 send(cfd, buf, 1, MSG_OOB); in producer()
|
/openbmc/docs/designs/ |
H A D | sol-sysrq.md | 89 is use `MSG_OOB` as the indicator of sysrq. The `MSG_OOB` was already introduced 91 modified to send `MSG_OOB` to obmc-console when the user enter the key code 92 sequence `\n~B`. When obmc-console receive `MSG_OOB`, it shall send the "break 96 input sequence correctly, as `MSG_OOB` can be anywhere in the input sequence. It 97 is possible to synchronise the `MSG_OOB` with the stream with 98 [sockatmark(3)][5]. But it requires signalling the `MSG_OOB` in all obmc-console
|
/openbmc/linux/net/x25/ |
H A D | af_x25.c | 1116 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_OOB|MSG_EOR|MSG_CMSG_COMPAT)) in x25_sendmsg() 1120 if (!(msg->msg_flags & (MSG_EOR|MSG_OOB))) in x25_sendmsg() 1173 if ((msg->msg_flags & MSG_OOB) && len > 32) in x25_sendmsg() 1216 if (msg->msg_flags & MSG_OOB) { in x25_sendmsg() 1255 if (msg->msg_flags & MSG_OOB) in x25_sendmsg() 1304 if (flags & MSG_OOB) { in x25_recvmsg() 1325 msg->msg_flags |= MSG_OOB; in x25_recvmsg()
|
/openbmc/linux/net/smc/ |
H A D | smc_tx.c | 210 if (msg->msg_flags & MSG_OOB) in smc_tx_sendmsg() 221 if (msg->msg_flags & MSG_OOB) in smc_tx_sendmsg() 279 if ((msg->msg_flags & MSG_OOB) && !send_remaining) in smc_tx_sendmsg()
|
H A D | smc_rx.c | 298 msg->msg_flags |= MSG_OOB; in smc_rx_recv_urg() 366 if (flags & MSG_OOB) in smc_rx_recvmsg()
|
/openbmc/linux/net/caif/ |
H A D | caif_socket.c | 276 if (flags & MSG_OOB) in caif_seqpkt_recvmsg() 352 if (flags&MSG_OOB) in caif_stream_recvmsg() 529 if (msg->msg_flags&MSG_OOB) in caif_seqpkt_sendmsg() 596 if (unlikely(msg->msg_flags&MSG_OOB)) in caif_stream_sendmsg()
|
/openbmc/linux/net/unix/ |
H A D | unix_bpf.c | 57 if (flags & MSG_OOB) in unix_bpf_recvmsg()
|
H A D | af_unix.c | 1894 if (msg->msg_flags&MSG_OOB) in unix_dgram_sendmsg() 2166 if (msg->msg_flags & MSG_OOB) { in unix_stream_sendmsg() 2256 if (msg->msg_flags & MSG_OOB) { in unix_stream_sendmsg() 2332 if (flags&MSG_OOB) in __unix_dgram_recvmsg() 2555 state->msg->msg_flags |= MSG_OOB; in unix_stream_recv_urg() 2672 if (unlikely(flags & MSG_OOB)) { in unix_stream_read_generic()
|
/openbmc/linux/net/phonet/ |
H A D | pep.c | 1269 if (flags & ~(MSG_OOB|MSG_PEEK|MSG_TRUNC|MSG_DONTWAIT|MSG_WAITALL| in pep_recvmsg() 1276 if ((flags & MSG_OOB) || sock_flag(sk, SOCK_URGINLINE)) { in pep_recvmsg() 1286 msg->msg_flags |= MSG_OOB; in pep_recvmsg() 1289 if (flags & MSG_OOB) in pep_recvmsg()
|
/openbmc/linux/net/l2tp/ |
H A D | l2tp_ip6.c | 512 if (msg->msg_flags & MSG_OOB) in l2tp_ip6_sendmsg() 666 if (flags & MSG_OOB) in l2tp_ip6_recvmsg()
|
H A D | l2tp_ip.c | 528 if (flags & MSG_OOB) in l2tp_ip_recvmsg()
|
/openbmc/linux/net/bluetooth/ |
H A D | af_bluetooth.c | 309 if (flags & MSG_OOB) in bt_sock_recvmsg() 390 if (flags & MSG_OOB) in bt_sock_stream_recvmsg()
|
/openbmc/phosphor-net-ipmid/sol/ |
H A D | sol_manager.cpp | 79 consoleSocket->send(boost::asio::buffer(input), MSG_OOB, ec); in writeConsoleSocket()
|
/openbmc/linux/tools/perf/trace/beauty/include/linux/ |
H A D | socket.h | 303 #define MSG_OOB 1 macro
|
/openbmc/linux/include/linux/ |
H A D | socket.h | 303 #define MSG_OOB 1 macro
|
/openbmc/linux/drivers/isdn/mISDN/ |
H A D | socket.c | 118 if (flags & (MSG_OOB)) in mISDN_sock_recvmsg() 178 if (msg->msg_flags & MSG_OOB) in mISDN_sock_sendmsg()
|
/openbmc/linux/net/ieee802154/ |
H A D | socket.c | 249 if (msg->msg_flags & MSG_OOB) { in raw_sendmsg() 618 if (msg->msg_flags & MSG_OOB) { in dgram_sendmsg()
|
/openbmc/linux/net/nfc/ |
H A D | llcp_sock.c | 788 if (msg->msg_flags & MSG_OOB) in llcp_sock_sendmsg() 848 if (flags & (MSG_OOB)) in llcp_sock_recvmsg()
|
/openbmc/linux/net/ipv4/ |
H A D | raw.c | 502 if (msg->msg_flags & MSG_OOB) /* Mirror BSD error message */ in raw_sendmsg() 740 if (flags & MSG_OOB) in raw_recvmsg()
|
H A D | ping.c | 667 if (msg->msg_flags & MSG_OOB) in ping_common_sendmsg() 862 if (flags & MSG_OOB) in ping_recvmsg()
|
H A D | tcp.c | 681 if (flags & MSG_OOB) in tcp_mark_urg() 926 *size_goal = tcp_xmit_size_goal(sk, mss_now, !(flags & MSG_OOB)); in tcp_send_mss() 1285 if (skb->len < size_goal || (flags & MSG_OOB) || unlikely(tp->repair)) in tcp_sendmsg_locked() 1392 msg->msg_flags |= MSG_OOB; in tcp_recv_urg() 2348 if (flags & MSG_OOB) in tcp_recvmsg_locked()
|
/openbmc/linux/net/rxrpc/ |
H A D | recvmsg.c | 293 if (flags & (MSG_OOB | MSG_TRUNC)) in rxrpc_recvmsg()
|
/openbmc/linux/net/ipv6/ |
H A D | raw.c | 435 if (flags & MSG_OOB) in rawv6_recvmsg() 761 if (msg->msg_flags & MSG_OOB) in rawv6_sendmsg()
|
/openbmc/linux/net/vmw_vsock/ |
H A D | af_vsock.c | 1156 if (msg->msg_flags & MSG_OOB) in vsock_dgram_sendmsg() 1797 if (msg->msg_flags & MSG_OOB) in vsock_connectible_sendmsg() 2164 if (flags & MSG_OOB) { in __vsock_connectible_recvmsg()
|
/openbmc/linux/drivers/xen/ |
H A D | pvcalls-front.c | 549 if (flags & (MSG_CONFIRM|MSG_DONTROUTE|MSG_EOR|MSG_OOB)) in pvcalls_front_sendmsg() 640 if (flags & (MSG_CMSG_CLOEXEC|MSG_ERRQUEUE|MSG_OOB|MSG_TRUNC)) in pvcalls_front_recvmsg()
|