Home
last modified time | relevance | path

Searched refs:cflex (Results 1 – 4 of 4) sorted by relevance

/freebsd/usr.sbin/jail/
H A Djailparse.y237 struct cflex *cflex = yyget_extra(scanner); in YYERROR_DECL() local
241 cflex->cfname, yyget_lineno(scanner), s); in YYERROR_DECL()
244 cflex->cfname); in YYERROR_DECL()
247 cflex->cfname, yyget_lineno(scanner), in YYERROR_DECL()
249 cflex->error = 1; in YYERROR_DECL()
H A Djailp.h201 struct cflex { struct
243 extern struct cflex *yyget_extra(void *scanner);
H A Dconfig.c54 extern int yylex_init_extra(struct cflex *extra, void *scanner);
312 struct cflex cflex = {.cfname = cfname, .error = 0}; in parse_config() local
315 yylex_init_extra(&cflex, &scanner); in parse_config()
317 cflex.cfname = "STDIN"; in parse_config()
325 if (yyparse(scanner) || cflex.error) in parse_config()
H A Djaillex.l40 #define YY_EXTRA_TYPE struct cflex*