HomeSort by: relevance | last modified time | path
    Searched defs:tiqe (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/netinet/
tcp_output.c 1165 struct ipqent *tiqe; local in function:tcp_output
1175 for (tiqe = TAILQ_FIRST(&tp->timeq);
1177 tiqe = TAILQ_NEXT(tiqe, ipqe_timeq)) {
1178 KASSERT(tiqe != NULL);
1180 *lp++ = htonl(tiqe->ipqe_seq);
1181 *lp++ = htonl(tiqe->ipqe_seq + tiqe->ipqe_len +
1182 ((tiqe->ipqe_flags & TH_FIN) != 0 ? 1 : 0));
tcp_input.c 457 struct ipqent *p, *q, *nq, *tiqe = NULL; local in function:tcp_reass
503 tiqe = p;
532 tiqe = q;
595 if (tiqe != NULL) {
596 tcpipqent_free(tiqe);
666 if (tiqe == NULL) {
667 tiqe = q;
697 if (tiqe == NULL) {
698 tiqe = q;
722 * collapsed, tiqe would not be NULL and we would be reusing it
    [all...]

Completed in 12 milliseconds