Home
last modified time | relevance | path

Searched refs:t_flags (Results 1 – 25 of 25) sorted by relevance

/netbsd-src/sys/netinet/
H A Dtcp_var.h233 u_int t_flags; member
404 #define TCP_ECN_ALLOWED(tp) (tp->t_flags & TF_ECN_PERMIT)
409 #define TCP_SACK_ENABLED(tp) (tp->t_flags & TF_WILL_SACK)
433 if (tp->t_flags & TF_REASSEMBLING) { in tcp_reass_lock_try()
437 tp->t_flags |= TF_REASSEMBLING; in tcp_reass_lock_try()
448 KASSERT((tp->t_flags & TF_REASSEMBLING) != 0); in tcp_reass_unlock()
449 tp->t_flags &= ~TF_REASSEMBLING; in tcp_reass_unlock()
464 if (((tp)->t_flags & TF_REASSEMBLING) == 0) { \
491 if (((tp)->t_flags & TF_DELACK) == 0) { \
492 (tp)->t_flags |
[all...]
H A Dtcp_timer.c235 if ((tp->t_flags & (TF_DEAD | TF_DELACK)) != TF_DELACK) { in tcp_delack()
244 tp->t_flags |= TF_ACKNOW; in tcp_delack()
311 if ((tp->t_flags & TF_DEAD) != 0) { in tcp_timer_rexmt()
321 if ((tp->t_flags & TF_PMTUD_PEND) && tp->t_inpcb && in tcp_timer_rexmt()
327 tp->t_flags &= ~TF_PMTUD_PEND; in tcp_timer_rexmt()
428 tp->t_flags |= TF_SYN_REXMT; in tcp_timer_rexmt()
458 if ((tp->t_flags & TF_DEAD) != 0) { in tcp_timer_persist()
521 if ((tp->t_flags & TF_DEAD) != 0) { in tcp_timer_keep()
600 if ((tp->t_flags & TF_DEAD) != 0) { in tcp_timer_2msl()
H A Dtcp_syncache.c697 tp->t_flags = sototcpcb(oso)->t_flags & TF_NODELAY; in syn_cache_get()
703 tp->t_flags |= TF_REQ_SCALE|TF_RCVD_SCALE; in syn_cache_get()
706 tp->t_flags |= TF_REQ_TSTMP|TF_RCVD_TSTMP; in syn_cache_get()
726 tp->t_flags |= TF_WILL_SACK; in syn_cache_get()
729 tp->t_flags |= TF_ECN_PERMIT; in syn_cache_get()
733 tp->t_flags |= TF_SIGNATURE; in syn_cache_get()
898 if (optp || (tp->t_flags & TF_SIGNATURE)) in syn_cache_add()
903 tb.t_flags = tcp_do_rfc1323 ? (TF_REQ_SCALE|TF_REQ_TSTMP) : 0; in syn_cache_add()
905 tb.t_flags |= (tp->t_flags & TF_SIGNATURE); in syn_cache_add()
911 tb.t_flags = 0; in syn_cache_add()
[all …]
H A Dtcp_output.c638 if ((tp->t_flags & (TF_ECN_SND_CWR|TF_ECN_SND_ECE)) != 0) { in tcp_output()
930 ((idle || tp->t_flags & TF_NODELAY) && in tcp_output()
988 if (tp->t_flags & TF_ACKNOW) in tcp_output()
1074 if ((tp->t_flags & TF_NOOPT) == 0 && OPT_FITS(TCPOLEN_MAXSEG)) { in tcp_output()
1081 if ((tp->t_flags & TF_REQ_SCALE) && in tcp_output()
1083 (tp->t_flags & TF_RCVD_SCALE)) && in tcp_output()
1106 if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP && in tcp_output()
1109 (tp->t_flags & TF_RCVD_TSTMP))) { in tcp_output()
1137 if (tp->t_flags & TF_SIGNATURE) { in tcp_output()
1247 if (tp->t_flags in tcp_output()
[all...]
H A Dtcp_input.c293 if (tp->t_flags & TF_DELACK || in tcp_setup_ack()
295 tp->t_flags |= TF_ACKNOW; in tcp_setup_ack()
308 if ((tp->t_flags & TF_PMTUD_PEND) && in icmp_check()
310 tp->t_flags &= ~TF_PMTUD_PEND; in icmp_check()
993 uint32_t t_flags = 0; in tcp_vtw_input()
1021 t_flags |= TF_ACKNOW; in tcp_vtw_input()
1099 t_flags |= TF_ACKNOW; in tcp_vtw_input()
1124 if (t_flags & TF_ACKNOW) in tcp_vtw_input()
1732 if (optp || (tp->t_flags & TF_SIGNATURE)) in tcp_input()
1745 tp->t_flags in tcp_input()
984 uint32_t t_flags = 0; tcp_vtw_input() local
[all...]
H A Dtcp_usrreq.c210 if ((tp->t_flags & TF_REQ_TSTMP) && (tp->t_flags & TF_RCVD_TSTMP)) in tcp_fill_info()
212 if (tp->t_flags & TF_SACK_PERMIT) in tcp_fill_info()
214 if ((tp->t_flags & TF_REQ_SCALE) && (tp->t_flags & TF_RCVD_SCALE)) { in tcp_fill_info()
219 if (tp->t_flags & TF_ECN_PERMIT) { in tcp_fill_info()
246 if (tp->t_flags & TF_TOE) in tcp_fill_info()
304 tp->t_flags |= TF_SIGNATURE; in tcp_ctloutput()
306 tp->t_flags &= ~TF_SIGNATURE; in tcp_ctloutput()
315 tp->t_flags |= TF_NODELAY; in tcp_ctloutput()
317 tp->t_flags &= ~TF_NODELAY; in tcp_ctloutput()
390 optval = (tp->t_flags & TF_SIGNATURE) ? 1 : 0; in tcp_ctloutput()
[all …]
H A Dtcp_congctl.c448 tp->t_flags |= TF_ECN_SND_CWR; in tcp_common_congestion_exp()
560 tp->t_flags |= TF_ECN_SND_CWR; in tcp_reno_slow_retransmit()
729 tp->t_flags |= TF_ACKNOW; in tcp_newreno_fast_retransmit_newack()
976 tp->t_flags |= TF_ECN_SND_CWR; in tcp_cubic_slow_retransmit()
H A Dtcp_subr.c915 tp->t_flags = flags; in tcp_tcpcb_template()
1150 tp->t_flags |= TF_DEAD; in tcp_close()
1461 tp->t_flags &= ~TF_PMTUD_PEND; in tcp_ctlinput()
1471 if (tp->t_flags & TF_PMTUD_PEND) { in tcp_ctlinput()
1475 tp->t_flags |= TF_PMTUD_PEND; in tcp_ctlinput()
2134 if ((tp->t_flags & (TF_REQ_TSTMP|TF_RCVD_TSTMP|TF_NOOPT)) == in tcp_optlen()
2139 if (tp->t_flags & TF_SIGNATURE) in tcp_optlen()
2166 if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP && in tcp_hdrsz()
2167 (tp->t_flags & TF_RCVD_TSTMP) == TF_RCVD_TSTMP) in tcp_hdrsz()
2170 if (tp->t_flags & TF_SIGNATURE) in tcp_hdrsz()
/netbsd-src/external/cddl/osnet/dist/tools/ctf/cvt/
H A Ddwarf.c597 tdp->t_flags = TDESC_F_RESOLVED; in tdesc_intr_common()
643 if (!(old->t_flags & TDESC_F_RESOLVED)) { in tdesc_intr_clone()
652 new->t_flags = TDESC_F_RESOLVED; in tdesc_intr_clone()
722 dimtdp->t_flags |= TDESC_F_RESOLVED; in tdesc_array_create()
773 if (!(dimtdp->t_flags & TDESC_F_RESOLVED)) { in die_array_create()
779 tdp->t_flags |= flags; in die_array_create()
793 if (tdp->t_flags & TDESC_F_RESOLVED) in die_array_resolve()
801 (tdp->t_ardef->ad_contents->t_flags & TDESC_F_RESOLVED) == 0) { in die_array_resolve()
811 tdp->t_flags |= TDESC_F_RESOLVED; in die_array_resolve()
824 if (tdp->t_flags & TDESC_F_RESOLVED) in die_array_failed()
[all …]
H A Dctftools.h245 int t_flags; member
H A Dmerge.c729 new->t_flags = old->t_flags; in conjure_template()
H A Doutput.c77 ii->ii_dtype->t_flags |= TDESC_F_ISROOT; in burst_iitypes()
H A Dctf.c296 int isroot = tp->t_flags & TDESC_F_ISROOT; in write_type()
/netbsd-src/sys/compat/common/
H A Dtty_43.c166 tp->t_flags = (ttcompatgetflags(tp)&0xffff0000) | (sg->sg_flags&0xffff); in compat_43_ttioctl()
232 tp->t_flags = (flags & 0xffff) | (argbits << 16); in compat_43_ttioctl()
235 tp->t_flags = flags | (argbits << 16); in compat_43_ttioctl()
238 tp->t_flags = flags & ~(argbits << 16); in compat_43_ttioctl()
319 SET(flags, ISSET(tp->t_flags, LITOUT|PASS8)); in ttcompatgetflags()
352 int flags = tp->t_flags; in ttcompatsetflags()
441 int flags = tp->t_flags; in ttcompatsetlflags()
/netbsd-src/lib/libedit/
H A Dterminal.h53 int t_flags; member
113 #define EL_FLAGS (el)->el_terminal.t_flags
/netbsd-src/sys/dev/ic/
H A Dpckbcvar.h61 int t_flags; member
H A Dpckbc.c352 if (res == -1 && ISSET(t->t_flags, PCKBC_NEED_AUXWRITE)) { in pckbc_attach()
403 if (ISSET(t->t_flags, PCKBC_CANT_TRANSLATE)) in pckbc_xt_translation()
633 pckbc_consdata.t_flags = flags; in pckbc_cnattach()
H A Dninjascsi32var.h226 int t_flags; member
H A Dninjascsi32.c816 if (target->t_flags & NJSC32_TARF_DE) in njsc32_negotiate_xfer()
820 if (target->t_flags & NJSC32_TARF_SYNC) in njsc32_negotiate_xfer()
1272 target->t_flags = 0; in njsc32_scsipi_request()
1274 target->t_flags |= NJSC32_TARF_TAG; in njsc32_scsipi_request()
1276 target->t_flags |= NJSC32_TARF_SYNC; in njsc32_scsipi_request()
1279 target->t_flags |= NJSC32_TARF_DE; in njsc32_scsipi_request()
1720 if (target->t_flags & NJSC32_TARF_TAG) in njsc32_update_xfer_mode()
/netbsd-src/sys/sys/
H A Dtty.h128 int t_flags; /* Tty flags. */ member
/netbsd-src/sys/arch/hp300/dev/
H A Ddcm.c566 device_xname(sc->sc_dev), port, tp->t_state, tp->t_flags); in dcmopen()
598 device_xname(sc->sc_dev), port, tp->t_state, tp->t_flags); in dcmclose()
863 tp->t_flags, head, pp->r_tail); in dcmreadbuf()
1186 device_xname(sc->sc_dev), port, tp->t_state, tp->t_flags, in dcmstart()
/netbsd-src/sys/dev/wscons/
H A Dwskbd.c171 int t_flags; member
363 id->t_flags |= WSKFL_METAESC; in wskbd_update_layout()
365 id->t_flags &= ~WSKFL_METAESC; in wskbd_update_layout()
1877 if (id->t_flags & WSKFL_METAESC) { in wskbd_translate()
/netbsd-src/usr.bin/netstat/
H A Dinet.c1089 printf(", flags 0x%x, inpcb 0x%lx\n\n", tcpcb.t_flags, in tcp_dump()
H A Dinet6.c1534 printf(", flags 0x%x, inpcb 0x%lx\n\n", mypcb.t_flags, in tcp6_dump()
/netbsd-src/sys/kern/
H A Dtty.c444 tp->t_flags = 0; in ttylopen()