Home
last modified time | relevance | path

Searched refs:SB_SPLICED (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/sys/
H A Dsockbuf.h51 #define SB_SPLICED 0x4000 /* socket buffer is spliced; macro
/freebsd/sys/kern/
H A Duipc_socket.c1695 so->so_rcv.sb_flags |= SB_SPLICED;
1712 so->so_rcv.sb_flags &= ~SB_SPLICED;
1722 so2->so_snd.sb_flags |= SB_SPLICED;
1758 if ((so->so_rcv.sb_flags & SB_SPLICED) == 0) {
1763 so->so_rcv.sb_flags &= ~SB_SPLICED;
1773 KASSERT((so2->so_snd.sb_flags & SB_SPLICED) != 0,
1777 so2->so_snd.sb_flags &= ~SB_SPLICED;
1839 KASSERT(SOLISTENING(so) || (so->so_rcv.sb_flags & SB_SPLICED) == 0,
1841 KASSERT(SOLISTENING(so) || (so->so_snd.sb_flags & SB_SPLICED) == 0,
4538 if ((so->so_rcv.sb_flags & SB_SPLICED) != 0)
[all …]
H A Duipc_sockbuf.c551 if (so->so_rcv.sb_flags & SB_SPLICED) in sorwakeup_locked()
563 if (so->so_snd.sb_flags & SB_SPLICED) in sowwakeup_locked()