Lines Matching refs:th_urp
2272 if (th->th_urp > 1) in tcp_do_segment()
2273 th->th_urp--; in tcp_do_segment()
2317 if (th->th_urp > todrop) in tcp_do_segment()
2318 th->th_urp -= todrop; in tcp_do_segment()
2321 th->th_urp = 0; in tcp_do_segment()
3143 if ((thflags & TH_URG) && th->th_urp && in tcp_do_segment()
3152 if (th->th_urp + sbavail(&so->so_rcv) > sb_max) { in tcp_do_segment()
3153 th->th_urp = 0; /* XXX */ in tcp_do_segment()
3172 if (SEQ_GT(th->th_seq+th->th_urp, tp->rcv_up)) { in tcp_do_segment()
3173 tp->rcv_up = th->th_seq + th->th_urp; in tcp_do_segment()
3188 if (th->th_urp <= (uint32_t)tlen && in tcp_do_segment()
3652 int cnt = off + th->th_urp - 1; in tcp_pulloutofband()