| /freebsd-14.2/tools/tools/syscall_timing/ |
| H A D | syscall_timing.c | 919 int t_flags; member 928 { "chroot", test_chroot, .t_flags = 0 }, 931 { "fork", test_fork, .t_flags = 0 }, 933 { "getppid", test_getppid, .t_flags = 0 }, 938 { "getuid", test_getuid, .t_flags = 0 }, 957 .t_flags = FLAG_PATH, .t_int = 10000 }, 962 { "pipe", test_pipe, .t_flags = 0 }, 986 { "select", test_select, .t_flags = 0 }, 988 { "setuid", test_setuid, .t_flags = 0 }, 989 { "shmfd", test_shmfd, .t_flags = 0 }, [all …]
|
| /freebsd-14.2/sys/netinet/ |
| H A D | tcp_input.c | 454 EXIT_RECOVERY(tp->t_flags); in cc_cong_signal() 490 EXIT_RECOVERY(tp->t_flags); in cc_post_recovery() 541 tp->t_flags |= TF_ACKNOW; in cc_ecnpkt_handler_flags() 1021 if (tp->t_flags & TF_TOE) { in tcp_input_with_port() 2288 tp->t_flags |= TF_ACKNOW; in tcp_do_segment() 2306 tp->t_flags |= TF_ACKNOW; in tcp_do_segment() 3242 tp->t_flags |= TF_ACKNOW; in tcp_do_segment() 3387 tp->t_flags &= ~TF_DELACK; in tcp_do_segment() 3417 tp->t_flags |= TF_ACKNOW; in tcp_do_segment() 3968 tp->t_flags |= TF_TSO; in tcp_mss() [all …]
|
| H A D | tcp_output.c | 235 if (tp->t_flags & TF_TOE) in tcp_default_output() 244 if (IS_FASTOPEN(tp->t_flags) && in tcp_default_output() 261 tp->t_flags &= ~TF_LASTIDLE; in tcp_default_output() 264 tp->t_flags |= TF_LASTIDLE; in tcp_default_output() 347 if (tp->t_flags & TF_NEEDFIN) in tcp_default_output() 349 if (tp->t_flags & TF_NEEDSYN) in tcp_default_output() 711 if (tp->t_flags & TF_ACKNOW) in tcp_default_output() 1128 if (tp->t_flags & TF_ACKNOW) in tcp_default_output() 1547 tp->t_flags |= TF_SENTFIN; in tcp_default_output() 1634 tp->t_flags |= TF_SENTFIN; in tcp_default_output() [all …]
|
| H A D | tcp_usrreq.c | 881 if (tp->t_flags & TF_TOE) in tcp_usr_rcvd() 1547 if ((tp->t_flags & TF_REQ_TSTMP) && (tp->t_flags & TF_RCVD_TSTMP)) in tcp_fill_info() 1551 if ((tp->t_flags & TF_REQ_SCALE) && (tp->t_flags & TF_RCVD_SCALE)) { in tcp_fill_info() 2139 tp->t_flags |= opt; in tcp_default_ctloutput() 2141 tp->t_flags &= ~opt; in tcp_default_ctloutput() 2844 if (t_flags & TF_ACKNOW) { in db_print_tflags() 2848 if (t_flags & TF_DELACK) { in db_print_tflags() 2856 if (t_flags & TF_NOOPT) { in db_print_tflags() 2940 if (t_flags & TF_TSO) { in db_print_tflags() 2944 if (t_flags & TF_TOE) { in db_print_tflags() [all …]
|
| H A D | tcp_timer.c | 322 tp->t_flags |= TF_ACKNOW; in tcp_timer_delack() 534 tp->t_flags |= TF_FORCEDATA; in tcp_timer_persist() 537 tp->t_flags &= ~TF_FORCEDATA; in tcp_timer_persist() 609 if (IN_FASTRECOVERY(tp->t_flags)) in tcp_timer_rexmt() 610 tp->t_flags |= TF_WASFRECOVERY; in tcp_timer_rexmt() 612 tp->t_flags &= ~TF_WASFRECOVERY; in tcp_timer_rexmt() 614 tp->t_flags |= TF_WASCRECOVERY; in tcp_timer_rexmt() 623 tp->t_flags |= TF_PREVVALID; in tcp_timer_rexmt() 625 tp->t_flags &= ~TF_PREVVALID; in tcp_timer_rexmt() 797 tp->t_flags |= TF_ACKNOW; in tcp_timer_rexmt() [all …]
|
| H A D | tcp_var.h | 342 u_int t_flags; member 816 #define IN_FASTRECOVERY(t_flags) (t_flags & TF_FASTRECOVERY) argument 817 #define ENTER_FASTRECOVERY(t_flags) t_flags |= TF_FASTRECOVERY argument 818 #define EXIT_FASTRECOVERY(t_flags) t_flags &= ~TF_FASTRECOVERY argument 820 #define IN_CONGRECOVERY(t_flags) (t_flags & TF_CONGRECOVERY) argument 821 #define ENTER_CONGRECOVERY(t_flags) t_flags |= TF_CONGRECOVERY argument 822 #define EXIT_CONGRECOVERY(t_flags) t_flags &= ~TF_CONGRECOVERY argument 824 #define IN_RECOVERY(t_flags) (t_flags & (TF_CONGRECOVERY | TF_FASTRECOVERY)) argument 825 #define ENTER_RECOVERY(t_flags) t_flags |= (TF_CONGRECOVERY | TF_FASTRECOVERY) argument 826 #define EXIT_RECOVERY(t_flags) t_flags &= ~(TF_CONGRECOVERY | TF_FASTRECOVERY) argument [all …]
|
| H A D | tcp_offload.c | 155 } else if ((flags & TH_FIN || tp->t_flags & TF_NEEDFIN) && in tcp_offload_output() 156 (tp->t_flags & TF_SENTFIN) == 0) { in tcp_offload_output() 159 tp->t_flags |= TF_SENTFIN; in tcp_offload_output()
|
| H A D | tcp_subr.c | 1091 tp->t_flags &= ~TF_GPUTINPROG; in tcp_default_fb_init() 2020 if (tp->t_flags & TF_SIGNATURE) in tcp_respond() 2357 tp->t_flags = TF_REQ_SCALE; in tcp_newtcpcb() 2360 tp->t_flags = TF_REQ_TSTMP; in tcp_newtcpcb() 2364 tp->t_flags |= TF_SACK_PERMIT; in tcp_newtcpcb() 2416 tp->t_flags |= TF_LRD; in tcp_newtcpcb() 2466 if (tp->t_flags & TF_TOE) in tcp_discardcb() 3345 if (IS_FASTOPEN(tp->t_flags)) in tcp_drop_syn_sent() 3533 if (tp->t_flags & TF_NOOPT) in tcp_maxseg() 3582 if (tp->t_flags & TF_NOOPT) in tcp_fixed_maxseg() [all …]
|
| /freebsd-14.2/sys/kern/ |
| H A D | tty_ttydisc.c | 230 if (tp->t_flags & TF_ZOMBIE) in ttydisc_read_canonical() 295 if (tp->t_flags & TF_ZOMBIE) in ttydisc_read_raw_no_timer() 347 if (tp->t_flags & TF_ZOMBIE) in ttydisc_read_raw_read_timer() 396 if (tp->t_flags & TF_ZOMBIE) in ttydisc_read_raw_interbyte_timer() 548 if (tp->t_flags & TF_ZOMBIE) in ttydisc_write() 676 tp->t_flags |= TF_BYPASS; in ttydisc_optimize() 678 tp->t_flags &= ~TF_BYPASS; in ttydisc_optimize() 684 tp->t_flags |= TF_BYPASS; in ttydisc_optimize() 686 tp->t_flags &= ~TF_BYPASS; in ttydisc_optimize() 712 tp->t_flags |= TF_ZOMBIE; in ttydisc_modem() [all …]
|
| H A D | tty.c | 240 tp->t_flags |= TF_OPENCLOSE; in ttydev_leave() 260 tp->t_flags &= ~TF_OPENCLOSE; in ttydev_leave() 295 tp->t_flags |= TF_OPENCLOSE; in ttydev_open() 399 tp->t_flags &= ~TF_EXCLUDE; in ttydev_close() 549 tp->t_flags |= TF_BUSY_OUT; in ttydev_write() 1215 tp->t_flags |= TF_GONE; in tty_rel_gone() 1306 xt->xt_flags = tp->t_flags; in tty_to_xtty() 1687 tp->t_flags |= TF_ASYNC; in tty_generic_ioctl() 2163 if (tp->t_flags & TF_HOOK) in ttyhook_register() 2166 tp->t_flags |= TF_HOOK; in ttyhook_register() [all …]
|
| /freebsd-14.2/sys/netinet/cc/ |
| H A D | cc_dctcp.c | 121 if (IN_CONGRECOVERY(CCV(ccv, t_flags))) { in dctcp_ack_received() 122 EXIT_CONGRECOVERY(CCV(ccv, t_flags)); in dctcp_ack_received() 124 ENTER_CONGRECOVERY(CCV(ccv, t_flags)); in dctcp_ack_received() 160 if (!IN_FASTRECOVERY(CCV(ccv, t_flags)) && in dctcp_ack_received() 253 if (!IN_FASTRECOVERY(CCV(ccv, t_flags))) { in dctcp_cong_signal() 254 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) { in dctcp_cong_signal() 267 ENTER_RECOVERY(CCV(ccv, t_flags)); in dctcp_cong_signal() 276 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) { in dctcp_cong_signal() 291 ENTER_CONGRECOVERY(CCV(ccv, t_flags)); in dctcp_cong_signal()
|
| H A D | cc_htcp.c | 206 if (type == CC_ACK && !IN_RECOVERY(CCV(ccv, t_flags)) && in htcp_ack_received() 292 if (!IN_FASTRECOVERY(CCV(ccv, t_flags))) { in htcp_cong_signal() 293 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) { in htcp_cong_signal() 306 ENTER_RECOVERY(CCV(ccv, t_flags)); in htcp_cong_signal() 311 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) { in htcp_cong_signal() 322 ENTER_CONGRECOVERY(CCV(ccv, t_flags)); in htcp_cong_signal() 368 if (IN_FASTRECOVERY(CCV(ccv, t_flags))) { in htcp_post_recovery()
|
| H A D | cc.c | 396 if (IN_FASTRECOVERY(CCV(ccv, t_flags))) { in newreno_cc_post_recovery() 478 if (!IN_FASTRECOVERY(CCV(ccv, t_flags))) { in newreno_cc_cong_signal() 479 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) in newreno_cc_cong_signal() 481 ENTER_RECOVERY(CCV(ccv, t_flags)); in newreno_cc_cong_signal() 485 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) { in newreno_cc_cong_signal() 488 ENTER_CONGRECOVERY(CCV(ccv, t_flags)); in newreno_cc_cong_signal() 503 if (type == CC_ACK && !IN_RECOVERY(CCV(ccv, t_flags)) && in newreno_cc_ack_received()
|
| H A D | cc_newreno.c | 221 if (type == CC_ACK && !IN_RECOVERY(CCV(ccv, t_flags)) && in newreno_ack_received() 406 if (!IN_FASTRECOVERY(CCV(ccv, t_flags))) { in newreno_cong_signal() 407 if (IN_CONGRECOVERY(CCV(ccv, t_flags) && in newreno_cong_signal() 413 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) in newreno_cong_signal() 415 ENTER_RECOVERY(CCV(ccv, t_flags)); in newreno_cong_signal() 425 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) { in newreno_cong_signal() 428 ENTER_CONGRECOVERY(CCV(ccv, t_flags)); in newreno_cong_signal()
|
| H A D | cc_cubic.c | 250 if (type == CC_ACK && !IN_RECOVERY(CCV(ccv, t_flags)) && in cubic_ack_received() 340 } else if (type == CC_ACK && !IN_RECOVERY(CCV(ccv, t_flags)) && in cubic_ack_received() 438 if (!IN_FASTRECOVERY(CCV(ccv, t_flags))) { in cubic_cong_signal() 439 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) { in cubic_cong_signal() 445 ENTER_RECOVERY(CCV(ccv, t_flags)); in cubic_cong_signal() 456 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) { in cubic_cong_signal() 462 ENTER_CONGRECOVERY(CCV(ccv, t_flags)); in cubic_cong_signal() 536 if (IN_FASTRECOVERY(CCV(ccv, t_flags))) { in cubic_post_recovery()
|
| H A D | cc_vegas.c | 214 if (IN_RECOVERY(CCV(ccv, t_flags))) in vegas_cong_signal() 221 if (!IN_RECOVERY(CCV(ccv, t_flags))) { in vegas_cong_signal() 234 if (IN_RECOVERY(CCV(ccv, t_flags)) && !presignalrecov) in vegas_cong_signal()
|
| H A D | cc_chd.c | 260 if (rtt && e_t->minrtt && !IN_RECOVERY(CCV(ccv, t_flags))) { in chd_ack_received() 355 ENTER_CONGRECOVERY(CCV(ccv, t_flags)); in chd_cong_signal() 367 if (!IN_RECOVERY(CCV(ccv, t_flags)) && qdly > V_chd_qthresh) { in chd_cong_signal() 386 ENTER_FASTRECOVERY(CCV(ccv, t_flags)); in chd_cong_signal()
|
| /freebsd-14.2/cddl/contrib/opensolaris/tools/ctf/cvt/ |
| H A D | dwarf.c | 579 tdp->t_flags = TDESC_F_RESOLVED; in tdesc_intr_common() 634 new->t_flags = TDESC_F_RESOLVED; in tdesc_intr_clone() 746 tdp->t_flags |= flags; in die_array_create() 777 tdp->t_flags |= TDESC_F_RESOLVED; in die_array_resolve() 859 tdp->t_flags |= TDESC_F_RESOLVED; in die_enum_create() 909 tdp->t_flags |= TDESC_F_RESOLVED; in die_enum_resolve() 1168 tdp->t_flags |= TDESC_F_RESOLVED; in die_sou_resolve() 1269 tdp->t_flags |= TDESC_F_RESOLVED; in die_funcptr_create() 1497 tdp->t_flags |= TDESC_F_RESOLVED; in die_base_create() 1519 tdp->t_flags |= TDESC_F_RESOLVED; in die_through_create() [all …]
|
| /freebsd-14.2/sys/netinet/tcp_stacks/ |
| H A D | rack.c | 5885 EXIT_RECOVERY(tp->t_flags); in rack_post_recovery() 7510 tp->t_flags &= ~TF_DELACK; in rack_timeout_delack() 7511 tp->t_flags |= TF_ACKNOW; in rack_timeout_delack() 8056 tp->t_flags |= TF_ACKNOW; in rack_timeout_rxt() 12561 tp->t_flags |= TF_DELACK; in rack_handle_delayed_ack() 12564 tp->t_flags |= TF_ACKNOW; in rack_handle_delayed_ack() 12776 tp->t_flags |= TF_ACKNOW; in rack_process_data() 13316 tp->t_flags |= TF_DELACK; in rack_do_syn_sent() 22446 tp->t_flags &= ~TF_TSO; in rack_output() 24006 if ((tp->t_flags & TF_REQ_TSTMP) && (tp->t_flags & TF_RCVD_TSTMP)) in rack_fill_info() [all …]
|
| H A D | bbr.c | 791 if (tp->t_flags & TF_DELACK) { in bbr_start_hpts_timer() 3771 EXIT_RECOVERY(tp->t_flags); in bbr_post_recovery() 4718 tp->t_flags &= ~TF_DELACK; in bbr_timeout_delack() 4719 tp->t_flags |= TF_ACKNOW; in bbr_timeout_delack() 5169 tp->t_flags |= TF_ACKNOW; in bbr_timeout_rxt() 8313 tp->t_flags |= TF_ACKNOW; in bbr_process_data() 8547 tp->t_flags |= TF_DELACK; in bbr_do_fastnewdata() 8551 tp->t_flags |= TF_ACKNOW; in bbr_do_fastnewdata() 8824 tp->t_flags |= TF_DELACK; in bbr_do_syn_sent() 8828 tp->t_flags |= TF_ACKNOW; in bbr_do_syn_sent() [all …]
|
| H A D | rack_bbr_common.c | 508 if (tp->t_flags & TF_SENTFIN) in ctf_outstanding() 557 tp->t_flags |= TF_ACKNOW; in ctf_ack_war_checks() 559 tp->t_flags &= ~TF_ACKNOW; in ctf_ack_war_checks() 561 tp->t_flags |= TF_ACKNOW; in ctf_ack_war_checks() 619 if ((todrop > 0) && (tp->t_flags & TF_SACK_PERMIT)) { in _ctf_drop_checks() 625 if (tp->t_flags & TF_ACKNOW) in _ctf_drop_checks()
|
| /freebsd-14.2/cddl/lib/libdtrace/ |
| H A D | siftr.d | 61 u_int t_flags; member 98 t_flags = p == NULL ? 0 : p->t_flags;
|
| /freebsd-14.2/sys/sys/ |
| H A D | tty.h | 66 unsigned int t_flags; /* (t) Terminal option flags. */ member 213 #define tty_opened(tp) ((tp)->t_flags & TF_OPENED) 214 #define tty_gone(tp) ((tp)->t_flags & TF_GONE)
|
| /freebsd-14.2/contrib/libedit/ |
| H A D | terminal.h | 53 int t_flags; member 113 #define EL_FLAGS (el)->el_terminal.t_flags
|
| /freebsd-14.2/sys/netinet/khelp/ |
| H A D | h_ertt.c | 178 if (tp->t_flags & TF_TSO) { in marked_packet_rtt() 180 tp->t_flags &= ~TF_TSO; in marked_packet_rtt() 465 tp->t_flags |= TF_TSO; in ertt_add_tx_segment_info_hook() 477 if (((tp->t_flags & TF_NOOPT) == 0) && in ertt_add_tx_segment_info_hook()
|