Searched refs:debug_printf_parse (Results 1 – 2 of 2) sorted by relevance
/busybox-1.35.0/editors/ |
D | awk.c | 59 #define debug_printf_parse(...) do {} while (0) macro 67 #ifndef debug_printf_parse 68 # define debug_printf_parse(...) (fprintf(stderr, __VA_ARGS__)) macro 242 if (n & TC_LPAREN ) debug_printf_parse(" LPAREN" ); in debug_parse_print_tc() 243 if (n & TC_RPAREN ) debug_printf_parse(" RPAREN" ); in debug_parse_print_tc() 244 if (n & TC_REGEXP ) debug_printf_parse(" REGEXP" ); in debug_parse_print_tc() 245 if (n & TC_OUTRDR ) debug_printf_parse(" OUTRDR" ); in debug_parse_print_tc() 246 if (n & TC_UOPPOST ) debug_printf_parse(" UOPPOST" ); in debug_parse_print_tc() 247 if (n & TC_UOPPRE1 ) debug_printf_parse(" UOPPRE1" ); in debug_parse_print_tc() 248 if (n & TC_BINOPX ) debug_printf_parse(" BINOPX" ); in debug_parse_print_tc() [all …]
|
/busybox-1.35.0/shell/ |
D | hush.c | 460 #define debug_printf_parse(...) do {} while (0) macro 566 #ifndef debug_printf_parse 1266 #ifndef debug_printf_parse 1267 # define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__)) macro 2759 debug_printf_parse("G.parse_lineno++ = %u\n", G.parse_lineno); in i_getch() 2794 debug_printf_parse("G.parse_lineno++ = %u\n", G.parse_lineno); in i_getch() 3783 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds); in done_command() 3787 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); in done_command() 3790 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); in done_command() 3801 debug_printf_parse("command->lineno = G.parse_lineno (%u)\n", G.parse_lineno); in done_command() [all …]
|