Home
last modified time | relevance | path

Searched refs:last_module_args (Results 1 – 3 of 3) sorted by relevance

/dports/sysutils/syslog-ng/syslog-ng-3.35.1/lib/
H A Dpragma-grammar.ym60 CfgArgs *last_module_args = NULL;
119 : KW_MODULE string { last_module_args = cfg_args_new(); } module_params
121 gboolean success = cfg_load_module_with_args(configuration, $2, last_module_args);
124 cfg_args_unref(last_module_args);
125 last_module_args = NULL;
138 …: LL_IDENTIFIER '(' string_or_number ')' { cfg_args_set(last_module_args, $1, $3); free($1); free…
H A Dpragma-grammar.y405 CfgArgs *last_module_args = NULL; variable
464 : KW_MODULE string { last_module_args = cfg_args_new(); } module_params
466 gboolean success = cfg_load_module_with_args(configuration, $2, last_module_args);
469 cfg_args_unref(last_module_args);
470 last_module_args = NULL;
483 …: LL_IDENTIFIER '(' string_or_number ')' { cfg_args_set(last_module_args, $1, $3); free($1); free…
H A Dpragma-grammar.c750 CfgArgs *last_module_args = NULL; variable
3298 { last_module_args = cfg_args_new(); } in yyparse()
3305 … gboolean success = cfg_load_module_with_args(configuration, (yyvsp[-2].cptr), last_module_args); in yyparse()
3308 cfg_args_unref(last_module_args); in yyparse()
3309 last_module_args = NULL; in yyparse()
3319 …{ cfg_args_set(last_module_args, (yyvsp[-3].cptr), (yyvsp[-1].cptr)); free((yyvsp[-3].cptr)); free… in yyparse()