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

/xnu-2782.1.97/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.c161 tcpsi->tcpsi_flags = tp->t_flags;
/xnu-2782.1.97/bsd/netinet/
H A Dtcp_output.c329 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
340 tp->t_flags &= ~TF_LASTIDLE;
342 if (tp->t_flags & TF_MORETOCOME) {
343 tp->t_flags |= TF_LASTIDLE;
396 tp->t_flags &= ~TF_TSO;
479 tp->t_flags &= ~TF_PMTUD;
481 tp->t_flags |= TF_PMTUD;
503 if (tp->t_flags & TF_SLOWLINK && slowlink_wsize > 0)
578 if (tp->t_flags & TF_NEEDFIN)
580 if (tp->t_flags
[all...]
H A Dtcp_timer.c301 #define TIMER_IS_ON_LIST(tp) ((tp)->t_flags & TF_TIMER_ONLIST)
621 tp->t_flags |= TF_WASFRECOVERY;
623 tp->t_flags &= ~TF_WASFRECOVERY;
639 tp->t_flags |= TF_PMTUD;
640 tp->t_flags &= ~TF_BLACKHOLE;
721 (tp->t_flags & TF_SENTFIN) != 0 &&
813 if (((tp->t_flags & (TF_PMTUD|TF_MAXSEGSNT))
823 tp->t_flags &= ~TF_PMTUD;
825 tp->t_flags |= TF_BLACKHOLE;
859 if ((tp->t_flags
[all...]
H A Dtcp_input.c1167 if ((tp->t_flags & (TF_REQ_TSTMP | TF_RCVD_TSTMP)) !=
1216 tp->t_flags &= ~(TF_STRETCHACK);
1298 if (tp->t_flags & TF_WASFRECOVERY)
1366 if (tp->t_rxtshift > 0 && (tp->t_flags & TF_BLACKHOLE) &&
2231 tp->t_flags |= tp0->t_flags & (TF_NOPUSH|TF_NOOPT|TF_NODELAY);
2264 tp->t_flags |= TF_STRETCHACK;
2268 tp->t_flags &= ~(TF_STRETCHACK);
2367 tp->t_flags |= TF_RCVD_TSTMP;
2377 tp->t_flags |
[all...]
H A Dtcp_cc.c303 if (tp->t_flags & TF_LOCAL) {
346 if ((tp->t_flags & TF_RXWIN0SENT) == 0 &&
352 if ((tp->t_flags & TF_RXWIN0SENT) == 0 &&
355 ((tp->t_flags & TF_STRETCHACK) != 0 &&
H A Dtcp_subr.c907 tp->t_flags = (TF_REQ_SCALE|TF_REQ_TSTMP);
991 int isnetlocal = (tp->t_flags & TF_LOCAL);
1058 if ((tp->t_flags & TF_CLOSING) ||
1060 tp->t_flags |= TF_CLOSING;
1412 otp->t_flags = tp->t_flags;
1595 otp->t_flags = tp->t_flags;
2182 if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP &&
2183 (tp->t_flags
[all...]
H A Dtcp_var.h243 uint32_t t_flags; member in struct:tcpcb
505 #define IN_FASTRECOVERY(tp) (tp->t_flags & TF_FASTRECOVERY)
516 (_tp_)->t_flags |= TF_FASTRECOVERY; \
522 (_tp_)->t_flags &= ~TF_FASTRECOVERY; \
546 (((_tp_)->t_flags & (TF_REQ_TSTMP|TF_RCVD_TSTMP)) == \
681 u_int t_flags; member in struct:otcpcb
992 u_int t_flags; member in struct:xtcpcb64
1074 u_int t_flags; member in struct:xtcpcb_n
H A Dtcp_usrreq.c1034 tp->t_flags |= TF_MORETOCOME;
1037 tp->t_flags &= ~TF_MORETOCOME;
1257 (otp->t_flags & TF_RCVD_CC)) {
1323 tp->t_flags |= TF_SENDCCNEW;
1380 (otp->t_flags & TF_RCVD_CC)) {
1441 tp->t_flags |= TF_SENDCCNEW;
1465 if ((tp->t_flags & TF_REQ_TSTMP) && (tp->t_flags & TF_RCVD_TSTMP))
1467 if (tp->t_flags & TF_SACK_PERMIT)
1469 if ((tp->t_flags
[all...]
H A Din_pcblist.c208 xt->t_flags = tp->t_flags;
H A Dtcp_sack.c213 if ((tp->t_flags & TF_STRETCHACK) != 0 && tp->rcv_numsacks > 0)
654 tp->t_flags |= TF_ACKNOW;
H A Dtcp_ledbat.c411 if ((tp->t_flags & TF_RXWIN0SENT) == 0 &&
H A Dmptcp_opt.c1346 tp->t_flags |= TF_ACKNOW;
1708 tp->t_flags |= TF_ACKNOW;
H A Din_tclass.c991 if (intotcpcb(inp)->t_flags & TF_LOCAL)
H A Dmptcp_subr.c5105 if ((tp->t_flags & TF_NODELAY) == 0 &&
/xnu-2782.1.97/bsd/dev/dtrace/scripts/
H A Dtcp.d150 u_int t_flags; /* flags */
186 t_flags = T->t_flags;
/xnu-2782.1.97/osfmk/kern/
H A Dtask.h262 volatile uint32_t t_flags; /* general-purpose task flags protected by task_lock (TL) */ member in struct:task
271 (((task)->t_flags & TF_64B_ADDR) != 0)
273 ((task)->t_flags |= TF_64B_ADDR)
275 ((task)->t_flags &= ~TF_64B_ADDR)
277 (((task)->t_flags & TF_64B_DATA) != 0)
H A Dtelemetry.c228 origflags = task->t_flags;
231 task->t_flags |= reasons;
239 task->t_flags &= ~reasons;
240 if (((origflags & TF_TELEMETRY) != 0) && ((task->t_flags & TF_TELEMETRY) == 0)) {
335 * task->t_flags & TF_TELEMETRY: This task is opted in.
344 if ((telemetry_active_tasks > 0) && ((thread->task->t_flags & TF_TELEMETRY) != 0)) {
704 if (task->t_flags & TF_TELEMETRY) {
H A Dtask.c769 new_task->t_flags = 0;
4097 task->t_flags |= TF_GPU_DENIED;
4099 task->t_flags &= ~TF_GPU_DENIED;
4108 return (task->t_flags & TF_GPU_DENIED) ? TRUE : FALSE;
/xnu-2782.1.97/bsd/sys/
H A Dtty.h126 int t_flags; /* Tty flags. */ member in struct:tty
/xnu-2782.1.97/tools/lldbmacros/
H A Duserspace.py492 is_task_64 = int(task.t_flags) & 0x1
598 is_task_64 = int(task.t_flags) & 0x1
H A Dprocess.py667 print "Flags: 0x{0:0>8x}".format(unsigned(tty.t_flags))

Completed in 232 milliseconds