ip6q               67 netinet6/frag6.c static void frag6_insque(struct ip6q *, struct ip6q *);
ip6q               68 netinet6/frag6.c static void frag6_remque(struct ip6q *);
ip6q               69 netinet6/frag6.c static void frag6_freef(struct ip6q *);
ip6q               74 netinet6/frag6.c struct	ip6q ip6q;	/* ip6 reassemble queue */
ip6q              138 netinet6/frag6.c 	ip6q.ip6q_next = ip6q.ip6q_prev = &ip6q;
ip6q              181 netinet6/frag6.c 	struct ip6q *q6;
ip6q              264 netinet6/frag6.c 	for (q6 = ip6q.ip6q_next; q6 != &ip6q; q6 = q6->ip6q_next)
ip6q              270 netinet6/frag6.c 	if (q6 == &ip6q) {
ip6q              288 netinet6/frag6.c 		q6 = (struct ip6q *)malloc(sizeof(struct ip6q), M_FTABLE,
ip6q              294 netinet6/frag6.c 		frag6_insque(q6, &ip6q);
ip6q              511 netinet6/frag6.c 	if (q6 != ip6q.ip6q_next) {
ip6q              513 netinet6/frag6.c 		frag6_insque(q6, &ip6q);
ip6q              628 netinet6/frag6.c 	struct ip6q *q6;
ip6q              700 netinet6/frag6.c 	struct ip6q *new, *old;
ip6q              713 netinet6/frag6.c 	struct ip6q *p6;
ip6q              730 netinet6/frag6.c 	struct ip6q *q6;
ip6q              734 netinet6/frag6.c 	q6 = ip6q.ip6q_next;
ip6q              736 netinet6/frag6.c 		while (q6 != &ip6q) {
ip6q              751 netinet6/frag6.c 	    ip6q.ip6q_prev) {
ip6q              754 netinet6/frag6.c 		frag6_freef(ip6q.ip6q_prev);
ip6q              786 netinet6/frag6.c 	while (ip6q.ip6q_next != &ip6q) {
ip6q              789 netinet6/frag6.c 		frag6_freef(ip6q.ip6q_next);
ip6q               71 netinet6/ip6_var.h struct	ip6q {
ip6q               82 netinet6/ip6_var.h 	struct ip6q	*ip6q_next;
ip6q               83 netinet6/ip6_var.h 	struct ip6q	*ip6q_prev;