Lines Matching refs:table_opts
243 struct table_opts { struct
247 } table_opts; variable
271 int process_tabledef(char *, struct table_opts *);
397 struct table_opts table_opts; member
469 %type <v.table_opts> table_opts table_opt table_opts_l
1184 tabledef : TABLE '<' STRING '>' table_opts {
1214 table_opts : {
1215 bzero(&table_opts, sizeof table_opts);
1216 SIMPLEQ_INIT(&table_opts.init_nodes);
1219 { $$ = table_opts; }
1222 bzero(&table_opts, sizeof table_opts);
1223 SIMPLEQ_INIT(&table_opts.init_nodes);
1224 $$ = table_opts;
1234 table_opts.flags |= PFR_TFLAG_CONST;
1236 table_opts.flags |= PFR_TFLAG_PERSIST;
1244 | '{' '}' { table_opts.init_addr = 1; }
1277 SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1279 table_opts.init_addr = 1;
1287 SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1289 table_opts.init_addr = 1;
4149 process_tabledef(char *name, struct table_opts *opts) in process_tabledef()