Lines Matching refs:msg
1453 # define syntax_error(lineno, msg) syntax_error(msg) argument
1454 # define syntax_error_at(lineno, msg) syntax_error_at(msg) argument
1486 static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg) in syntax_error() argument
1488 if (msg) in syntax_error()
1489 bb_error_msg("syntax error: %s", msg); in syntax_error()
1495 static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg) in syntax_error_at() argument
1497 bb_error_msg("syntax error at '%s'", msg); in syntax_error_at()
1511 char msg[2] = { ch, '\0' }; in syntax_error_unterm_ch() local
1512 syntax_error_unterm_str(lineno, msg); in syntax_error_unterm_ch()
1517 char msg[2]; in syntax_error_unexpected_ch() local
1518 msg[0] = ch; in syntax_error_unexpected_ch()
1519 msg[1] = '\0'; in syntax_error_unexpected_ch()
1523 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg); in syntax_error_unexpected_ch()
1536 # define syntax_error(msg) syntax_error(__LINE__, msg) argument
1537 # define syntax_error_at(msg) syntax_error_at(__LINE__, msg) argument