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

/xnu-2782.1.97/bsd/netinet/
H A Dtcp_timer.c108 #define TIMERENTRY_TO_TP(te) ((struct tcpcb *)((uintptr_t)te - offsetof(struct tcpcb, tentry.le.le_next)))
1488 struct tcptimerentry *te, *next_te; local
1502 LIST_FOREACH_SAFE(te, &listp->lhead, le, next_te) {
1504 uint32_t runtime = te->runtime;
1505 if (te->index < TCPT_NONE && TSTMP_GT(runtime, tcp_now)) {
1510 list_mode |= te->mode;
1514 tp = TIMERENTRY_TO_TP(te);
1631 struct tcptimerentry *te = &tp->tentry; local
1632 u_int16_t index = te
[all...]
H A Dtcp_input.c562 struct tseg_qent *te = NULL; local
612 te = (struct tseg_qent *) zalloc(tcp_reass_zone);
613 if (te == NULL) {
653 zfree(tcp_reass_zone, te);
654 te = NULL;
703 te->tqe_m = m;
704 te->tqe_th = th;
705 te->tqe_len = *tlenp;
708 LIST_INSERT_HEAD(&tp->t_segq, te, tqe_q);
710 LIST_INSERT_AFTER(p, te, tqe_
[all...]

Completed in 75 milliseconds