sbin/pfctl/parse.y
1761
tabledef : TABLE '<' STRING '>' table_opts {
sbin/pfctl/parse.y
1791
table_opts : {
sbin/pfctl/parse.y
1792
bzero(&table_opts, sizeof table_opts);
sbin/pfctl/parse.y
1793
SIMPLEQ_INIT(&table_opts.init_nodes);
sbin/pfctl/parse.y
1796
{ $$ = table_opts; }
sbin/pfctl/parse.y
1799
bzero(&table_opts, sizeof table_opts);
sbin/pfctl/parse.y
1800
SIMPLEQ_INIT(&table_opts.init_nodes);
sbin/pfctl/parse.y
1801
$$ = table_opts;
sbin/pfctl/parse.y
1811
table_opts.flags |= PFR_TFLAG_CONST;
sbin/pfctl/parse.y
1813
table_opts.flags |= PFR_TFLAG_PERSIST;
sbin/pfctl/parse.y
1815
table_opts.flags |= PFR_TFLAG_COUNTERS;
sbin/pfctl/parse.y
1823
| '{' optnl '}' { table_opts.init_addr = 1; }
sbin/pfctl/parse.y
1860
SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
sbin/pfctl/parse.y
1862
table_opts.init_addr = 1;
sbin/pfctl/parse.y
1870
SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
sbin/pfctl/parse.y
1872
table_opts.init_addr = 1;
sbin/pfctl/parse.y
373
} table_opts;
sbin/pfctl/parse.y
434
int process_tabledef(char *, struct table_opts *, int);
sbin/pfctl/parse.y
566
struct table_opts table_opts;
sbin/pfctl/parse.y
5933
process_tabledef(char *name, struct table_opts *opts, int popts)
sbin/pfctl/parse.y
662
%type <v.table_opts> table_opts table_opt table_opts_l