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

12

/freebsd-12-stable/tools/tools/syscall_timing/
H A Dsyscall_timing.c887 int t_flags; member in struct:test
894 { "access", test_access, .t_flags = FLAG_PATH },
895 { "bad_open", test_bad_open, .t_flags = 0 },
896 { "chroot", test_chroot, .t_flags = 0 },
897 { "clock_gettime", test_clock_gettime, .t_flags = 0 },
898 { "create_unlink", test_create_unlink, .t_flags = FLAG_PATH },
899 { "fork", test_fork, .t_flags = 0 },
900 { "fork_exec", test_fork_exec, .t_flags = 0 },
901 { "getppid", test_getppid, .t_flags = 0 },
902 { "getpriority", test_getpriority, .t_flags
[all...]
/freebsd-12-stable/sys/netinet/cc/
H A Dcc_dctcp.c112 if (CCV(ccv, t_flags) & TF_ECN_PERMIT) {
118 if (IN_CONGRECOVERY(CCV(ccv, t_flags))) {
119 EXIT_CONGRECOVERY(CCV(ccv, t_flags));
121 ENTER_CONGRECOVERY(CCV(ccv, t_flags));
157 if (!IN_FASTRECOVERY(CCV(ccv, t_flags)) &&
169 if (CCV(ccv, t_flags) & TF_ECN_PERMIT) {
235 if (CCV(ccv, t_flags) & TF_ECN_PERMIT) {
242 if (!IN_FASTRECOVERY(CCV(ccv, t_flags))) {
243 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) {
256 ENTER_RECOVERY(CCV(ccv, t_flags));
[all...]
H A Dcc_newreno.c134 if (type == CC_ACK && !IN_RECOVERY(CCV(ccv, t_flags)) &&
267 if (!IN_FASTRECOVERY(CCV(ccv, t_flags))) {
268 if (IN_CONGRECOVERY(CCV(ccv, t_flags) &&
275 if (!IN_CONGRECOVERY(CCV(ccv, t_flags)))
277 ENTER_RECOVERY(CCV(ccv, t_flags));
281 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) {
284 ENTER_CONGRECOVERY(CCV(ccv, t_flags));
304 if (IN_FASTRECOVERY(CCV(ccv, t_flags))) {
H A Dcc_htcp.c204 if (type == CC_ACK && !IN_RECOVERY(CCV(ccv, t_flags)) &&
281 if (!IN_FASTRECOVERY(CCV(ccv, t_flags))) {
282 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) {
295 ENTER_RECOVERY(CCV(ccv, t_flags));
300 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) {
311 ENTER_CONGRECOVERY(CCV(ccv, t_flags));
361 if (IN_FASTRECOVERY(CCV(ccv, t_flags))) {
H A Dcc_cubic.c146 if (type == CC_ACK && !IN_RECOVERY(CCV(ccv, t_flags)) &&
225 } else if (type == CC_ACK && !IN_RECOVERY(CCV(ccv, t_flags)) &&
291 if (!IN_FASTRECOVERY(CCV(ccv, t_flags))) {
292 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) {
298 ENTER_RECOVERY(CCV(ccv, t_flags));
303 if (!IN_CONGRECOVERY(CCV(ccv, t_flags))) {
309 ENTER_CONGRECOVERY(CCV(ccv, t_flags));
369 if (IN_FASTRECOVERY(CCV(ccv, t_flags))) {
H A Dcc_vegas.c202 if (IN_RECOVERY(CCV(ccv, t_flags)))
209 if (!IN_RECOVERY(CCV(ccv, t_flags))) {
222 if (IN_RECOVERY(CCV(ccv, t_flags)) && !presignalrecov)
H A Dcc_chd.c256 if (rtt && e_t->minrtt && !IN_RECOVERY(CCV(ccv, t_flags))) {
342 ENTER_CONGRECOVERY(CCV(ccv, t_flags));
354 if (!IN_RECOVERY(CCV(ccv, t_flags)) && qdly > V_chd_qthresh) {
373 ENTER_FASTRECOVERY(CCV(ccv, t_flags));
H A Dcc_cdg.c457 ENTER_CONGRECOVERY(CCV(ccv, t_flags));
464 if (IN_CONGRECOVERY(CCV(ccv, t_flags)) ||
484 ENTER_RECOVERY(CCV(ccv, t_flags));
641 if (!IN_RECOVERY(CCV(ccv, t_flags))) {
/freebsd-12-stable/sys/netinet/
H A Dtcp_output.c226 if (tp->t_flags & TF_TOE)
235 if (IS_FASTOPEN(tp->t_flags) &&
248 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
252 tp->t_flags &= ~TF_LASTIDLE;
254 if (tp->t_flags & TF_MORETOCOME) {
255 tp->t_flags |= TF_LASTIDLE;
265 if ((tp->t_flags & TF_SACK_PERMIT) &&
289 if ((tp->t_flags & TF_SACK_PERMIT) && IN_FASTRECOVERY(tp->t_flags) &&
333 if (tp->t_flags
[all...]
H A Dtcp_input.c410 if (!IN_FASTRECOVERY(tp->t_flags)) {
412 if (tp->t_flags & TF_ECN_PERMIT)
413 tp->t_flags |= TF_ECN_SND_CWR;
417 if (!IN_CONGRECOVERY(tp->t_flags) ||
423 EXIT_CONGRECOVERY(tp->t_flags);
426 if (tp->t_flags & TF_ECN_PERMIT)
427 tp->t_flags |= TF_ECN_SND_CWR;
433 EXIT_RECOVERY(tp->t_flags);
434 if (tp->t_flags & TF_ECN_PERMIT)
435 tp->t_flags |
[all...]
H A Dtcp_usrreq.c453 if (IS_FASTOPEN(tp->t_flags))
504 if (IS_FASTOPEN(tp->t_flags))
908 if (IS_FASTOPEN(tp->t_flags) &&
912 if (tp->t_flags & TF_TOE)
1150 if (IS_FASTOPEN(tp->t_flags))
1169 tp->t_flags |= TF_MORETOCOME;
1172 tp->t_flags &= ~TF_MORETOCOME;
1205 if (IS_FASTOPEN(tp->t_flags))
1206 tp->t_flags &= ~TF_FASTOPEN;
1233 tp->t_flags |
2523 db_print_tflags(u_int t_flags) argument
[all...]
H A Dtcp_timer.c273 tp->t_flags |= TF_ACKNOW;
570 tp->t_flags |= TF_FORCEDATA;
572 tp->t_flags &= ~TF_FORCEDATA;
658 if (IN_FASTRECOVERY(tp->t_flags))
659 tp->t_flags |= TF_WASFRECOVERY;
661 tp->t_flags &= ~TF_WASFRECOVERY;
662 if (IN_CONGRECOVERY(tp->t_flags))
663 tp->t_flags |= TF_WASCRECOVERY;
665 tp->t_flags &= ~TF_WASCRECOVERY;
666 if ((tp->t_flags
960 uint32_t t_flags; local
[all...]
H A Dtcp_var.h107 u_int t_flags; member in struct:tcpcb
316 * Flags and utility macros for the t_flags field.
349 #define IN_FASTRECOVERY(t_flags) (t_flags & TF_FASTRECOVERY)
350 #define ENTER_FASTRECOVERY(t_flags) t_flags |= TF_FASTRECOVERY
351 #define EXIT_FASTRECOVERY(t_flags) t_flags &= ~TF_FASTRECOVERY
353 #define IN_CONGRECOVERY(t_flags) (t_flags
702 uint32_t t_flags; /* (s,p) */ member in struct:xtcpcb
[all...]
H A Dtcp_offload.c137 } else if ((flags & TH_FIN || tp->t_flags & TF_NEEDFIN) &&
138 (tp->t_flags & TF_SENTFIN) == 0) {
141 tp->t_flags |= TF_SENTFIN;
H A Dtcp_subr.c1340 if ((tp->t_flags & TF_NOOPT) == 0)
1468 if (tp->t_flags & TF_RCVD_TSTMP) {
1475 if (tp->t_flags & TF_SIGNATURE)
1669 tp->t_flags = (TF_REQ_SCALE|TF_REQ_TSTMP);
1671 tp->t_flags |= TF_SACK_PERMIT;
1904 if (tp->t_flags & TF_TOE)
2791 if (IS_FASTOPEN(tp->t_flags))
2843 if (tp->t_flags & TF_SACK_PERMIT)
2844 EXIT_FASTRECOVERY(tp->t_flags);
2939 if (tp->t_flags
[all...]
/freebsd-12-stable/sys/kern/
H A Dtty_ttydisc.c97 tp->t_flags &= ~(TF_STOPPED|TF_HIWAT|TF_ZOMBIE);
155 if (tp->t_flags & TF_ZOMBIE)
210 if (tp->t_flags & TF_ZOMBIE)
262 if (tp->t_flags & TF_ZOMBIE)
311 if (tp->t_flags & TF_ZOMBIE)
463 if (tp->t_flags & TF_ZOMBIE)
533 tp->t_flags |= TF_HIWAT_OUT;
546 if ((tp->t_flags & TF_HIWAT_OUT) == 0)
553 if (tp->t_flags & TF_ZOMBIE) {
579 tp->t_flags |
[all...]
H A Dtty.c226 if (tty_opened(tp) || tp->t_flags & TF_OPENCLOSE) {
232 tp->t_flags |= TF_OPENCLOSE;
256 tp->t_flags &= ~TF_OPENCLOSE;
284 while (tp->t_flags & TF_OPENCLOSE) {
291 tp->t_flags |= TF_OPENCLOSE;
298 if (tp->t_flags & (TF_OPENED_CONS | TF_OPENED_IN)) {
303 if (tp->t_flags & TF_OPENED_OUT) {
309 if (tp->t_flags & TF_EXCLUDE && priv_check(td, PRIV_TTY_EXCLUSIVE)) {
348 tp->t_flags |= TF_OPENED_CONS;
350 tp->t_flags |
[all...]
/freebsd-12-stable/contrib/libedit/
H A Dterminal.h53 int t_flags; member in struct:__anon2154
113 #define EL_FLAGS (el)->el_terminal.t_flags
/freebsd-12-stable/sys/netinet/tcp_stacks/
H A Drack_bbr_common.c486 tp->t_flags |= TF_ACKNOW;
497 if ((todrop > 0) && (tp->t_flags & TF_SACK_PERMIT)) {
503 tp->t_flags |= TF_ACKNOW;
532 tp->t_flags |= TF_ACKNOW;
580 tp->t_flags |= TF_ACKNOW;
761 if (tp->t_flags & TF_NOOPT)
773 if (tp->t_flags & TF_RCVD_TSTMP)
778 if (tp->t_flags & TF_SIGNATURE)
782 if (tp->t_flags & TF_REQ_TSTMP)
786 if (tp->t_flags
[all...]
H A Drack.c1293 if ((tp->t_flags & TF_GPUTINPROG) &&
1309 tp->t_flags &= ~TF_GPUTINPROG;
1395 EXIT_RECOVERY(tp->t_flags);
1409 if (!IN_FASTRECOVERY(tp->t_flags)) {
1417 if (tp->t_flags & TF_ECN_PERMIT)
1418 tp->t_flags |= TF_ECN_SND_CWR;
1422 if (!IN_CONGRECOVERY(tp->t_flags) ||
1428 EXIT_CONGRECOVERY(tp->t_flags);
1431 if (tp->t_flags & TF_ECN_PERMIT)
1432 tp->t_flags |
[all...]
/freebsd-12-stable/sys/sys/
H A Dttydisc.h55 #define ttydisc_can_bypass(tp) ((tp)->t_flags & TF_BYPASS)
H A Dtty.h68 unsigned int t_flags; /* (t) Terminal option flags. */ member in struct:tty
211 #define tty_opened(tp) ((tp)->t_flags & TF_OPENED)
212 #define tty_gone(tp) ((tp)->t_flags & TF_GONE)
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c579 tdp->t_flags = TDESC_F_RESOLVED;
625 if (!(old->t_flags & TDESC_F_RESOLVED)) {
634 new->t_flags = TDESC_F_RESOLVED;
702 dimtdp->t_flags |= TDESC_F_RESOLVED;
740 if (!(dimtdp->t_flags & TDESC_F_RESOLVED)) {
746 tdp->t_flags |= flags;
760 if (tdp->t_flags & TDESC_F_RESOLVED)
767 (tdp->t_ardef->ad_contents->t_flags & TDESC_F_RESOLVED) == 0) {
777 tdp->t_flags |= TDESC_F_RESOLVED;
790 if (tdp->t_flags
[all...]
/freebsd-12-stable/sys/netipsec/
H A Dxform_tcp.c94 optval = (tp->t_flags & TF_SIGNATURE) ? 1 : 0;
113 tp->t_flags |= TF_SIGNATURE;
115 tp->t_flags &= ~TF_SIGNATURE;
/freebsd-12-stable/sys/netinet/khelp/
H A Dh_ertt.c180 if (tp->t_flags & TF_TSO) {
182 tp->t_flags &= ~TF_TSO;
467 tp->t_flags |= TF_TSO;
479 if (((tp->t_flags & TF_NOOPT) == 0) &&

Completed in 281 milliseconds

12