pf_fragment        80 net/pf_norm.c  struct pf_fragment {
pf_fragment        81 net/pf_norm.c  	RB_ENTRY(pf_fragment) fr_entry;
pf_fragment        82 net/pf_norm.c  	TAILQ_ENTRY(pf_fragment) frag_next;
pf_fragment        98 net/pf_norm.c  TAILQ_HEAD(pf_fragqueue, pf_fragment)	pf_fragqueue;
pf_fragment        99 net/pf_norm.c  TAILQ_HEAD(pf_cachequeue, pf_fragment)	pf_cachequeue;
pf_fragment       101 net/pf_norm.c  static __inline int	 pf_frag_compare(struct pf_fragment *,
pf_fragment       102 net/pf_norm.c  			    struct pf_fragment *);
pf_fragment       103 net/pf_norm.c  RB_HEAD(pf_frag_tree, pf_fragment)	pf_frag_tree, pf_cache_tree;
pf_fragment       104 net/pf_norm.c  RB_PROTOTYPE(pf_frag_tree, pf_fragment, fr_entry, pf_frag_compare);
pf_fragment       105 net/pf_norm.c  RB_GENERATE(pf_frag_tree, pf_fragment, fr_entry, pf_frag_compare);
pf_fragment       108 net/pf_norm.c  void			 pf_ip2key(struct pf_fragment *, struct ip *);
pf_fragment       109 net/pf_norm.c  void			 pf_remove_fragment(struct pf_fragment *);
pf_fragment       111 net/pf_norm.c  void			 pf_free_fragment(struct pf_fragment *);
pf_fragment       112 net/pf_norm.c  struct pf_fragment	*pf_find_fragment(struct ip *, struct pf_frag_tree *);
pf_fragment       113 net/pf_norm.c  struct mbuf		*pf_reassemble(struct mbuf **, struct pf_fragment **,
pf_fragment       116 net/pf_norm.c  			    struct pf_fragment **, int, int, int *);
pf_fragment       137 net/pf_norm.c  	pool_init(&pf_frag_pl, sizeof(struct pf_fragment), 0, 0, 0, "pffrag",
pf_fragment       139 net/pf_norm.c  	pool_init(&pf_cache_pl, sizeof(struct pf_fragment), 0, 0, 0,
pf_fragment       156 net/pf_norm.c  pf_frag_compare(struct pf_fragment *a, struct pf_fragment *b)
pf_fragment       178 net/pf_norm.c  	struct pf_fragment	*frag;
pf_fragment       210 net/pf_norm.c  	struct pf_fragment	*frag;
pf_fragment       238 net/pf_norm.c  pf_free_fragment(struct pf_fragment *frag)
pf_fragment       271 net/pf_norm.c  pf_ip2key(struct pf_fragment *key, struct ip *ip)
pf_fragment       279 net/pf_norm.c  struct pf_fragment *
pf_fragment       282 net/pf_norm.c  	struct pf_fragment	 key;
pf_fragment       283 net/pf_norm.c  	struct pf_fragment	*frag;
pf_fragment       306 net/pf_norm.c  pf_remove_fragment(struct pf_fragment *frag)
pf_fragment       321 net/pf_norm.c  pf_reassemble(struct mbuf **m0, struct pf_fragment **frag,
pf_fragment       520 net/pf_norm.c  pf_fragcache(struct mbuf **m0, struct ip *h, struct pf_fragment **frag, int mff,
pf_fragment       822 net/pf_norm.c  	struct pf_fragment	*frag = NULL;