Searched refs:te (Results 1 – 3 of 3) sorted by relevance
| /xnu-11215.81.4/bsd/netinet/ |
| H A D | mptcp.c | 275 struct tseg_qent *te = NULL; in mptcp_reass() local 296 te = zalloc_flags(tcp_reass_zone, Z_WAITOK | Z_NOFAIL); in mptcp_reass() 324 zfree(tcp_reass_zone, te); in mptcp_reass() 325 te = NULL; in mptcp_reass() 374 te->tqe_m = m; in mptcp_reass() 375 te->tqe_th = NULL; in mptcp_reass() 376 te->tqe_len = *tlenp; in mptcp_reass() 379 LIST_INSERT_HEAD(&mp_tp->mpt_segq, te, tqe_q); in mptcp_reass() 381 LIST_INSERT_AFTER(p, te, tqe_q); in mptcp_reass()
|
| H A D | tcp_timer.c | 451 #define TIMERENTRY_TO_TP(te) (__unsafe_forge_single(struct tcpcb *, ((uintptr_t)te - offsetof(struc… argument 2141 struct tcptimerentry *te, *__single next_te; in tcp_run_timerlist() local 2176 LIST_FOREACH_SAFE(te, &listp->lhead, le, next_te) { in tcp_run_timerlist() 2178 uint32_t runtime = te->runtime; in tcp_run_timerlist() 2180 tp = TIMERENTRY_TO_TP(te); in tcp_run_timerlist() 2185 if (te->index < TCPT_NONE && TSTMP_GT(runtime, tcp_now) && in tcp_run_timerlist() 2191 list_mode |= te->mode; in tcp_run_timerlist() 2310 struct tcptimerentry *te = &tp->tentry; in tcp_sched_timers() local 2311 u_int16_t index = te->index; in tcp_sched_timers() 2312 u_int16_t mode = te->mode; in tcp_sched_timers() [all …]
|
| H A D | tcp_input.c | 566 struct tseg_qent *te = NULL; in tcp_reass() local 622 te = zalloc_flags(tcp_reass_zone, Z_WAITOK | Z_NOFAIL); in tcp_reass() 676 zfree(tcp_reass_zone, te); in tcp_reass() 677 te = NULL; in tcp_reass() 761 te->tqe_m = m; in tcp_reass() 762 te->tqe_th = th; in tcp_reass() 763 te->tqe_len = *tlenp; in tcp_reass() 768 LIST_INSERT_HEAD(&tp->t_segq, te, tqe_q); in tcp_reass() 770 LIST_INSERT_AFTER(p, te, tqe_q); in tcp_reass()
|