Lines Matching defs:table_opts
338 struct table_opts {
342 } table_opts;
353 int process_tabledef(char *, struct table_opts *, int);
454 struct table_opts table_opts;
533 %type <v.table_opts> table_opts table_opt table_opts_l
1226 tabledef : TABLE '<' STRING '>' table_opts {
1255 table_opts : {
1256 bzero(&table_opts, sizeof table_opts);
1257 SIMPLEQ_INIT(&table_opts.init_nodes);
1260 { $$ = table_opts; }
1263 bzero(&table_opts, sizeof table_opts);
1264 SIMPLEQ_INIT(&table_opts.init_nodes);
1265 $$ = table_opts;
1275 table_opts.flags |= PFR_TFLAG_CONST;
1277 table_opts.flags |= PFR_TFLAG_PERSIST;
1279 table_opts.flags |= PFR_TFLAG_COUNTERS;
1287 | '{' optnl '}' { table_opts.init_addr = 1; }
1324 SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1326 table_opts.init_addr = 1;
1334 SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1336 table_opts.init_addr = 1;
3983 process_tabledef(char *name, struct table_opts *opts, int popts)