Symbol: pfctl_anchor
lib/libpfctl/libpfctl.h
210
struct pfctl_anchor *anchor;
lib/libpfctl/libpfctl.h
313
struct pfctl_anchor *anchor;
lib/libpfctl/libpfctl.h
319
RB_HEAD(pfctl_anchor_global, pfctl_anchor);
lib/libpfctl/libpfctl.h
320
RB_HEAD(pfctl_anchor_node, pfctl_anchor);
lib/libpfctl/libpfctl.h
322
RB_ENTRY(pfctl_anchor) entry_global;
lib/libpfctl/libpfctl.h
323
RB_ENTRY(pfctl_anchor) entry_node;
lib/libpfctl/libpfctl.h
324
struct pfctl_anchor *parent;
lib/libpfctl/libpfctl.h
332
RB_PROTOTYPE(pfctl_anchor_global, pfctl_anchor, entry_global,
lib/libpfctl/libpfctl.h
334
RB_PROTOTYPE(pfctl_anchor_node, pfctl_anchor, entry_node,
lib/libpfctl/libpfctl.h
37
struct pfctl_anchor;
sbin/pfctl/parse.y
479
struct pfctl_anchor *, struct pfctl_anchor *);
sbin/pfctl/parse.y
7805
struct pfctl_anchor *a, struct pfctl_anchor *alast)
sbin/pfctl/pf_ruleset.c
143
static struct pfctl_anchor *
sbin/pfctl/pf_ruleset.c
146
struct pfctl_anchor *key, *found;
sbin/pfctl/pf_ruleset.c
148
key = (struct pfctl_anchor *)rs_malloc(sizeof(*key));
sbin/pfctl/pf_ruleset.c
160
struct pfctl_anchor *anchor;
sbin/pfctl/pf_ruleset.c
178
struct pfctl_anchor *anchor = NULL, *dup, *parent = NULL;
sbin/pfctl/pf_ruleset.c
216
anchor = (struct pfctl_anchor *)rs_malloc(sizeof(*anchor));
sbin/pfctl/pf_ruleset.c
268
struct pfctl_anchor *parent;
sbin/pfctl/pf_ruleset.c
75
extern struct pfctl_anchor pf_main_anchor;
sbin/pfctl/pf_ruleset.c
82
static __inline int pf_anchor_compare(struct pfctl_anchor *,
sbin/pfctl/pf_ruleset.c
83
struct pfctl_anchor *);
sbin/pfctl/pf_ruleset.c
84
static struct pfctl_anchor *pf_find_anchor(const char *);
sbin/pfctl/pf_ruleset.c
86
RB_GENERATE(pfctl_anchor_global, pfctl_anchor, entry_global,
sbin/pfctl/pf_ruleset.c
88
RB_GENERATE(pfctl_anchor_node, pfctl_anchor, entry_node, pf_anchor_compare);
sbin/pfctl/pf_ruleset.c
91
pf_anchor_compare(struct pfctl_anchor *a, struct pfctl_anchor *b)
sbin/pfctl/pfctl.c
125
int pfctl_ruleset_trans(struct pfctl *, char *, struct pfctl_anchor *, bool);
sbin/pfctl/pfctl.c
188
struct pfctl_anchor pf_main_anchor;
sbin/pfctl/pfctl.c
2250
pfctl_ruleset_trans(struct pfctl *pf, char *path, struct pfctl_anchor *a, bool do_eth)
sbin/pfctl/pfctl.c
2455
pfctl_load_tables(struct pfctl *pf, char *path, struct pfctl_anchor *a,
sbin/pfctl/pfctl_parser.h
106
struct pfctl_anchor *astack[PFCTL_ANCHOR_STACK_DEPTH];
sbin/pfctl/pfctl_parser.h
111
struct pfctl_anchor *anchor, *alast;