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

12

/macosx-10.10/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;
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Dterm.h56 int t_flags; member in struct:__anon10936
112 #define EL_FLAGS (el)->el_term.t_flags
/macosx-10.10/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 &&
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Del_term.h55 int t_flags; member in struct:__anon659
122 #define EL_FLAGS (el)->el_term.t_flags
/macosx-10.10/libedit-40/src/
H A Dterminal.h55 int t_flags; member in struct:__anon9526
123 #define EL_FLAGS (el)->el_terminal.t_flags
/macosx-10.10/xnu-2782.1.97/bsd/dev/dtrace/scripts/
H A Dtcp.d150 u_int t_flags; /* flags */
186 t_flags = T->t_flags;
/macosx-10.10/dtrace-147/tools/ctfconvert/
H A Ddwarf.c620 tdp->t_flags = TDESC_F_RESOLVED;
666 if (!(old->t_flags & TDESC_F_RESOLVED)) {
675 new->t_flags = TDESC_F_RESOLVED;
739 dimtdp->t_flags |= TDESC_F_RESOLVED;
777 if (!(dimtdp->t_flags & TDESC_F_RESOLVED)) {
783 tdp->t_flags |= flags;
797 if (tdp->t_flags & TDESC_F_RESOLVED)
813 tdp->t_flags |= TDESC_F_RESOLVED;
826 if (tdp->t_flags & TDESC_F_RESOLVED)
890 tdp->t_flags |
[all...]
H A Dctftools.h239 int t_flags; member in struct:tdesc
H A Dmerge.c725 new->t_flags = old->t_flags;
/macosx-10.10/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) {
/macosx-10.10/libpthread-105.1.4/lldbmacros/
H A Dpthread.py6 if int(task.t_flags) & 0x1:
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dtty.h126 int t_flags; /* Tty flags. */ member in struct:tty
/macosx-10.10/lsof-53/lsof/dialects/darwin/kmem/
H A Ddsock.c298 Lf->lts.topt = (unsigned int)t.t_flags;
/macosx-10.10/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

Completed in 169 milliseconds

12