Lines Matching refs:table_opts
358 static struct table_opts { struct
362 } table_opts; argument
378 int process_tabledef(char *, struct table_opts *, int);
507 struct table_opts table_opts; member
599 %type <v.table_opts> table_opts table_opt table_opts_l
1719 tabledef : TABLE '<' STRING '>' table_opts {
1749 table_opts : {
1750 bzero(&table_opts, sizeof table_opts);
1751 SIMPLEQ_INIT(&table_opts.init_nodes);
1754 { $$ = table_opts; }
1757 bzero(&table_opts, sizeof table_opts);
1758 SIMPLEQ_INIT(&table_opts.init_nodes);
1759 $$ = table_opts;
1769 table_opts.flags |= PFR_TFLAG_CONST;
1771 table_opts.flags |= PFR_TFLAG_PERSIST;
1773 table_opts.flags |= PFR_TFLAG_COUNTERS;
1781 | '{' optnl '}' { table_opts.init_addr = 1; }
1818 SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1820 table_opts.init_addr = 1;
1828 SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1830 table_opts.init_addr = 1;
5442 process_tabledef(char *name, struct table_opts *opts, int popts) in process_tabledef()