Home
last modified time | relevance | path

Searched refs:te (Results 1 – 3 of 3) sorted by relevance

/xnu-8796.141.3/bsd/netinet/
H A Dmptcp.c274 struct tseg_qent *te = NULL; in mptcp_reass() local
295 te = zalloc_flags(tcp_reass_zone, Z_WAITOK | Z_NOFAIL); in mptcp_reass()
323 zfree(tcp_reass_zone, te); in mptcp_reass()
324 te = NULL; in mptcp_reass()
373 te->tqe_m = m; in mptcp_reass()
374 te->tqe_th = NULL; in mptcp_reass()
375 te->tqe_len = *tlenp; in mptcp_reass()
378 LIST_INSERT_HEAD(&mp_tp->mpt_segq, te, tqe_q); in mptcp_reass()
380 LIST_INSERT_AFTER(p, te, tqe_q); in mptcp_reass()
H A Dtcp_timer.c452 #define TIMERENTRY_TO_TP(te) ((struct tcpcb *)((uintptr_t)te - offsetof(struct tcpcb, tentry.le.le_… argument
2127 struct tcptimerentry *te, *next_te; in tcp_run_timerlist() local
2162 LIST_FOREACH_SAFE(te, &listp->lhead, le, next_te) { in tcp_run_timerlist()
2164 uint32_t runtime = te->runtime; in tcp_run_timerlist()
2166 tp = TIMERENTRY_TO_TP(te); in tcp_run_timerlist()
2171 if (te->index < TCPT_NONE && TSTMP_GT(runtime, tcp_now) && in tcp_run_timerlist()
2177 list_mode |= te->mode; in tcp_run_timerlist()
2302 struct tcptimerentry *te = &tp->tentry; in tcp_sched_timers() local
2303 u_int16_t index = te->index; in tcp_sched_timers()
2304 u_int16_t mode = te->mode; in tcp_sched_timers()
[all …]
H A Dtcp_input.c567 struct tseg_qent *te = NULL; in tcp_reass() local
625 te = zalloc_flags(tcp_reass_zone, Z_WAITOK | Z_NOFAIL); in tcp_reass()
679 zfree(tcp_reass_zone, te); in tcp_reass()
680 te = NULL; in tcp_reass()
758 te->tqe_m = m; in tcp_reass()
759 te->tqe_th = th; in tcp_reass()
760 te->tqe_len = *tlenp; in tcp_reass()
765 LIST_INSERT_HEAD(&tp->t_segq, te, tqe_q); in tcp_reass()
767 LIST_INSERT_AFTER(p, te, tqe_q); in tcp_reass()