Lines Matching refs:table_opts
318 static struct table_opts { struct
322 } table_opts; argument
349 int process_tabledef(char *, struct table_opts *);
479 struct table_opts table_opts; member
569 %type <v.table_opts> table_opts table_opt table_opts_l
1717 tabledef : TABLE '<' STRING '>' table_opts {
1747 table_opts : {
1748 bzero(&table_opts, sizeof table_opts);
1749 SIMPLEQ_INIT(&table_opts.init_nodes);
1752 { $$ = table_opts; }
1755 bzero(&table_opts, sizeof table_opts);
1756 SIMPLEQ_INIT(&table_opts.init_nodes);
1757 $$ = table_opts;
1767 table_opts.flags |= PFR_TFLAG_CONST;
1769 table_opts.flags |= PFR_TFLAG_PERSIST;
1771 table_opts.flags |= PFR_TFLAG_COUNTERS;
1779 | '{' optnl '}' { table_opts.init_addr = 1; }
1816 SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1818 table_opts.init_addr = 1;
1826 SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1828 table_opts.init_addr = 1;
5396 process_tabledef(char *name, struct table_opts *opts) in process_tabledef()