Searched refs:t_flags (Results 1 - 14 of 14) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_output.c313 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
326 tp->t_flags &= ~TF_LASTIDLE;
328 if (tp->t_flags & TF_MORETOCOME) {
329 tp->t_flags |= TF_LASTIDLE;
371 tp->t_flags &= ~TF_TSO;
450 tp->t_flags &= ~TF_PMTUD;
452 tp->t_flags |= TF_PMTUD;
468 if (tp->t_flags & TF_SLOWLINK && slowlink_wsize > 0)
540 if (tp->t_flags & TF_NEEDFIN)
542 if (tp->t_flags
[all...]
H A Dtcp_timer.c264 #define TIMER_IS_ON_LIST(tp) ((tp)->t_flags & TF_TIMER_ONLIST)
596 (tp->t_flags & TF_SENTFIN) != 0 &&
628 tp->t_flags |= TF_WASFRECOVERY;
630 tp->t_flags &= ~TF_WASFRECOVERY;
658 if (((tp->t_flags & (TF_PMTUD|TF_MAXSEGSNT)) == (TF_PMTUD|TF_MAXSEGSNT)) &&
666 tp->t_flags &= ~TF_PMTUD; /* Disable Path MTU Discovery for now */
667 tp->t_flags |= TF_BLACKHOLE; /* Record that we may have found a black hole */
694 if ((tp->t_flags & TF_BLACKHOLE) && (tp->t_rxtshift > 4)) {
695 tp->t_flags |= TF_PMTUD;
696 tp->t_flags
[all...]
H A Dtcp_input.c537 if ((tp->t_flags & TF_STRETCHACK) != 0)
885 if ((tp->t_flags & (TF_REQ_TSTMP | TF_RCVD_TSTMP)) !=
1029 if ((tp->t_flags & (TF_REQ_TSTMP | TF_RCVD_TSTMP)) !=
1075 tp->t_flags &= ~(TF_STRETCHACK);
1958 tp->t_flags |= tp0->t_flags & (TF_NOPUSH|TF_NOOPT|TF_NODELAY);
2047 tp->t_flags |= TF_STRETCHACK;
2051 tp->t_flags &= ~(TF_STRETCHACK);
2096 if (tp->t_state == TCPS_ESTABLISHED && (tp->t_flags & TF_STRETCHACK) != 0 &&
2129 tp->t_flags |
[all...]
H A Dtcp_newreno.c177 if ( tp->t_flags & TF_LOCAL )
379 if ((tp->t_flags & TF_RXWIN0SENT) == 0 &&
385 if ((tp->t_flags & TF_RXWIN0SENT) == 0 &&
388 ((tp->t_flags & TF_STRETCHACK) != 0 &&
H A Dtcp_usrreq.c741 tp->t_flags |= TF_MORETOCOME;
744 tp->t_flags &= ~TF_MORETOCOME;
937 (otp->t_flags & TF_RCVD_CC))
998 tp->t_flags |= TF_SENDCCNEW;
1051 (otp->t_flags & TF_RCVD_CC)) {
1105 tp->t_flags |= TF_SENDCCNEW;
1129 if ((tp->t_flags & TF_REQ_TSTMP) && (tp->t_flags & TF_RCVD_TSTMP))
1131 if (tp->t_flags & TF_SACK_PERMIT)
1133 if ((tp->t_flags
[all...]
H A Dtcp_subr.c855 tp->t_flags = (TF_REQ_SCALE|TF_REQ_TSTMP);
928 int isnetlocal = (tp->t_flags & TF_LOCAL);
993 if ((tp->t_flags & TF_CLOSING) ||
995 tp->t_flags |= TF_CLOSING;
1320 otp->t_flags = tp->t_flags;
1506 otp->t_flags = tp->t_flags;
2089 if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP &&
2090 (tp->t_flags
[all...]
H A Dtcp_var.h198 u_int t_flags; member in struct:tcpcb
391 #define IN_FASTRECOVERY(tp) (tp->t_flags & TF_FASTRECOVERY)
401 (_tp_)->t_flags |= TF_FASTRECOVERY; \
406 #define EXIT_FASTRECOVERY(tp) tp->t_flags &= ~TF_FASTRECOVERY
529 u_int t_flags; member in struct:otcpcb
787 u_int t_flags; member in struct:xtcpcb64
870 u_int t_flags; member in struct:xtcpcb_n
H A Dtcp_sack.c211 if ((tp->t_flags & TF_STRETCHACK) != 0 && tp->rcv_numsacks > 0)
550 tp->t_flags |= TF_ACKNOW;
H A Din_pcblist.c207 xt->t_flags = tp->t_flags;
H A Dtcp_ledbat.c404 if ((tp->t_flags & TF_RXWIN0SENT) == 0 &&
H A Din_tclass.c931 if (intotcpcb(inp)->t_flags & TF_LOCAL)
/darwin-on-arm/xnu/bsd/kern/
H A Dtty_compat.c196 * Notes: This function may modify the contents of the tp->t_flags
244 tp->t_flags = (tp->t_flags&0xffff0000) | (sg->sg_flags&0xffff);
308 tp->t_flags = (tp->t_flags&0xffff) | *(int *)data<<16;
310 tp->t_flags =
311 (ttcompatgetflags(tp)&0xffff0000)|(tp->t_flags&0xffff);
313 tp->t_flags |= *(int *)data<<16;
315 tp->t_flags &= ~(*(int *)data<<16);
400 sg->sg_flags = tp->t_flags
[all...]
H A Dsocket_info.c151 tcpsi->tcpsi_flags = tp->t_flags;
/darwin-on-arm/xnu/bsd/sys/
H A Dtty.h126 int t_flags; /* Tty flags. */ member in struct:tty

Completed in 123 milliseconds