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.c1705 so->so_rcv.sb_flags |= SB_SPLICED;
1722 so->so_rcv.sb_flags &= ~SB_SPLICED;
1732 so2->so_snd.sb_flags |= SB_SPLICED;
1768 if ((so->so_rcv.sb_flags & SB_SPLICED) == 0) {
1773 so->so_rcv.sb_flags &= ~SB_SPLICED;
1783 KASSERT((so2->so_snd.sb_flags & SB_SPLICED) != 0,
1787 so2->so_snd.sb_flags &= ~SB_SPLICED;
1849 KASSERT(SOLISTENING(so) || (so->so_rcv.sb_flags & SB_SPLICED) == 0,
1851 KASSERT(SOLISTENING(so) || (so->so_snd.sb_flags & SB_SPLICED) == 0,
4542 if ((so->so_rcv.sb_flags & SB_SPLICED) != 0)
[all …]
H A Duipc_sockbuf.c550 if (so->so_rcv.sb_flags & SB_SPLICED) in sorwakeup_locked()
562 if (so->so_snd.sb_flags & SB_SPLICED) in sowwakeup_locked()