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

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_timer.c111 #define TIMERENTRY_TO_TP(te) ((struct tcpcb *)((uintptr_t)te - offsetof(struct tcpcb, tentry.le.le_next)))
1106 struct tcptimerentry *te, *next_te; local
1121 LIST_FOREACH_SAFE(te, &listp->lhead, le, next_te) {
1123 uint32_t runtime = te->runtime;
1133 tp = TIMERENTRY_TO_TP(te);
1235 struct tcptimerentry *te = &tp->tentry; local
1236 uint16_t index = te->index;
1256 offset = te->runtime - tcp_now;
1270 LIST_INSERT_HEAD(&listp->lhead, te, l
[all...]
H A Dtcp_input.c521 struct tseg_qent *te = NULL; local
571 te = (struct tseg_qent *) zalloc_noblock(tcp_reass_zone);
572 if (te == NULL) {
608 zfree(tcp_reass_zone, te);
656 te->tqe_m = m;
657 te->tqe_th = th;
658 te->tqe_len = *tlenp;
661 LIST_INSERT_HEAD(&tp->t_segq, te, tqe_q);
663 LIST_INSERT_AFTER(p, te, tqe_q);
H A Dtcp_subr.c1208 struct tseg_qent *te; local
1224 while ((te = LIST_FIRST(&tcpb->t_segq))
1226 LIST_REMOVE(te, tqe_q);
1227 m_freem(te->tqe_m);
1228 zfree(tcp_reass_zone, te);

Completed in 84 milliseconds