Home
last modified time | relevance | path

Searched refs:config_ast (Results 1 – 10 of 10) sorted by relevance

/dports/security/aide/aide-0.17.4/src/
H A Dconf_yacc.c801 Kind, Value, config_ast); \
817 YY_USE (config_ast); in yy_symbol_value_print()
871 int yyrule, ast** config_ast) in yy_reduce_print() argument
936 YY_USE (config_ast); in yydestruct()
963 yyparse (ast** config_ast) in yyparse() argument
1206 { *config_ast = (yyvsp[0].ast); } in yyparse()
1474 yyerror (config_ast, YY_("syntax error")); in yyparse()
1491 yytoken, &yylval, config_ast); in yyparse()
1585 yyerror (config_ast, YY_("memory exhausted")); in yyparse()
1600 yytoken, &yylval, config_ast); in yyparse()
[all …]
H A Dcommandconf.c152 ast* config_ast = NULL; in parse_config() local
155 if(confparse(&config_ast)){ in parse_config()
159 eval_config(config_ast, 0); in parse_config()
160 deep_free(config_ast); in parse_config()
161 config_ast = NULL; in parse_config()
165 if(confparse(&config_ast)){ in parse_config()
169 eval_config(config_ast, 0); in parse_config()
170 deep_free(config_ast); in parse_config()
171 config_ast = NULL; in parse_config()
180 deep_free(config_ast); in parse_config()
[all …]
H A Dconf_yacc.y101 %parse-param {ast** config_ast}
106 | statements { *config_ast = $1; }
173 ast** config_ast __attribute__((unused)),
H A Dconf_eval.c466 ast* config_ast = NULL; in include_file() local
470 if(confparse(&config_ast)){ in include_file()
475 eval_config(config_ast, include_depth); in include_file()
476 deep_free(config_ast); in include_file()
482 ast* config_ast = NULL; in include_file() local
483 if(confparse(&config_ast)){ in include_file()
487 eval_config(config_ast, include_depth); in include_file()
488 deep_free(config_ast); in include_file()
623 void eval_config(ast* config_ast, int include_depth) { in eval_config() argument
625 for(node = config_ast; node != NULL; node = node->next) { in eval_config()
H A Dconf_ast.c275 void deep_free(ast* config_ast) { in deep_free() argument
276 if (config_ast == NULL) { in deep_free()
280 for(node = config_ast; node != NULL; ) { in deep_free()
H A Dconf_yacc.h143 int confparse (ast** config_ast);
/dports/shells/ksh2020/ast-ksh2020/src/cmd/ksh93/sh/
H A Dversion.c.in3 #include "config_ast.h" // IWYU pragma: keep
/dports/shells/ksh2020/ast-ksh2020/
H A Dmeson.build16 # So the `config_ast.h` and other dynamically generated headers can be found (see below).
296 configure_file(input : 'config_ast.h.in',
297 output : 'config_ast.h',
H A Dconfig_ast.h.in11 // `build/config_ast.h` header. There will be a lot of false positives until
/dports/shells/ksh2020/ast-ksh2020/src/cmd/ksh93/tests/
H A Db_chmod.sh19 if grep -q '^#define _lib_lchmod 1' $BUILD_DIR/config_ast.h