Searched refs:LEXOUT (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/usr.sbin/nsd/ |
| H A D | configlexer.lex | 26 #define LEXOUT(s) printf s /* used ONLY when debugging */ 28 #define LEXOUT(s) macro 72 LEXOUT(("switch_to_include_file(%s) ", filename)); in config_start_include() 184 {SPACE}* { LEXOUT(("SP ")); /* ignore */ } 185 {SPACE}*{COMMENT}.* { LEXOUT(("comment(%s) ", yytext)); /* ignore */ } 186 server{COLON} { LEXOUT(("v(%s) ", yytext)); return VAR_SERVER;} 187 name{COLON} { LEXOUT(("v(%s) ", yytext)); return VAR_NAME;} 188 ip-address{COLON} { LEXOUT(("v(%s) ", yytext)); return VAR_IP_ADDRESS;} 189 interface{COLON} { LEXOUT(("v(%s) ", yytext)); return VAR_IP_ADDRESS;} 190 ip-transparent{COLON} { LEXOUT(("v(%s) ", yytext)); return VAR_IP_TRANSPARENT;} [all …]
|
| H A D | zlexer.lex | 31 #define LEXOUT(s) printf s /* used ONLY when debugging */ macro 33 #define LEXOUT(s) macro 248 LEXOUT((". ")); 252 LEXOUT(("@ ")); 256 LEXOUT(("\\# ")); 263 LEXOUT(("NL\n")); 266 LEXOUT(("SP ")); 275 LEXOUT(("( ")); 284 LEXOUT((") ")); 291 LEXOUT(("PREV ")); [all …]
|
| /openbsd-src/usr.sbin/unbound/util/ |
| H A D | configlexer.lex | 27 #define LEXOUT(s) printf s /* used ONLY when debugging */ macro 29 #define LEXOUT(s) macro 39 LEXOUT(("v(%s%d) ", yytext, num_args)); \ 101 LEXOUT(("switch_to_include_file(%s)\n", filename)); in config_start_include() 213 LEXOUT(("SP ")); /* ignore */ } 216 LEXOUT(("comment(%s) ", yytext)); /* ignore */ } 591 <INITIAL,val>{NEWLINE} { LEXOUT(("NL\n")); cfg_parser->line++; } 594 <val>\" { BEGIN(quotedstring); LEXOUT(("QS ")); } 600 <quotedstring>{DQANY}* { LEXOUT(("STR(%s) ", yytext)); yymore(); } 604 LEXOUT(("Q [all...] |
| /openbsd-src/sbin/unwind/libunbound/util/ |
| H A D | configlexer.lex | 27 #define LEXOUT(s) printf s /* used ONLY when debugging */ macro 29 #define LEXOUT(s) macro 39 LEXOUT(("v(%s%d) ", yytext, num_args)); \ 101 LEXOUT(("switch_to_include_file(%s)\n", filename)); in config_start_include() 213 LEXOUT(("SP ")); /* ignore */ } 216 LEXOUT(("comment(%s) ", yytext)); /* ignore */ } 591 <INITIAL,val>{NEWLINE} { LEXOUT(("NL\n")); cfg_parser->line++; } 594 <val>\" { BEGIN(quotedstring); LEXOUT(("QS ")); } 600 <quotedstring>{DQANY}* { LEXOUT(("STR(%s) ", yytext)); yymore(); } 604 LEXOUT(("Q [all...] |
| H A D | configlexer.c | 3468 #define LEXOUT(s) printf s /* used ONLY when debugging */ 3470 #define LEXOUT(s) 3480 LEXOUT(("v(%s%d) ", yytext, num_args)); \ 3542 LEXOUT(("switch_to_include_file(%s)\n", filename)); in config_start_include() 3922 LEXOUT(("SP ")); /* ignore */ } 3929 LEXOUT(("comment(%s) ", yytext)); /* ignore */ } 5761 { LEXOUT(("NL\n")); cfg_parser->line++; } 5767 { BEGIN(quotedstring); LEXOUT(("QS ")); } 5780 { LEXOUT(("STR(%s) ", yytext)); yymore(); } 5793 LEXOUT(("Q 3463 #define LEXOUT( global() macro [all...] |