sbin/pfctl/parse.y
1292
tabledef : TABLE '<' STRING '>' table_opts {
sbin/pfctl/parse.y
1321
table_opts : {
sbin/pfctl/parse.y
1322
bzero(&table_opts, sizeof table_opts);
sbin/pfctl/parse.y
1323
SIMPLEQ_INIT(&table_opts.init_nodes);
sbin/pfctl/parse.y
1326
{ $$ = table_opts; }
sbin/pfctl/parse.y
1329
bzero(&table_opts, sizeof table_opts);
sbin/pfctl/parse.y
1330
SIMPLEQ_INIT(&table_opts.init_nodes);
sbin/pfctl/parse.y
1331
$$ = table_opts;
sbin/pfctl/parse.y
1341
table_opts.flags |= PFR_TFLAG_CONST;
sbin/pfctl/parse.y
1343
table_opts.flags |= PFR_TFLAG_PERSIST;
sbin/pfctl/parse.y
1345
table_opts.flags |= PFR_TFLAG_COUNTERS;
sbin/pfctl/parse.y
1353
| '{' optnl '}' { table_opts.init_addr = 1; }
sbin/pfctl/parse.y
1390
SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
sbin/pfctl/parse.y
1392
table_opts.init_addr = 1;
sbin/pfctl/parse.y
1400
SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
sbin/pfctl/parse.y
1402
table_opts.init_addr = 1;
sbin/pfctl/parse.y
352
} table_opts;
sbin/pfctl/parse.y
408
int process_tabledef(char *, struct table_opts *, int);
sbin/pfctl/parse.y
4483
process_tabledef(char *name, struct table_opts *opts, int popts)
sbin/pfctl/parse.y
509
struct table_opts table_opts;
sbin/pfctl/parse.y
592
%type <v.table_opts> table_opts table_opt table_opts_l