Lines Matching refs:lineno
1252 ZEND_API ZEND_COLD ZEND_NORETURN void _zend_bailout(const char *filename, uint32_t lineno) /* {{{ */
1256 zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno);
1455 info->lineno = error_lineno;
1601 static ZEND_COLD void get_filename_lineno(int type, zend_string **filename, uint32_t *lineno) {
1602 /* Obtain relevant filename and lineno */
1607 *lineno = 0;
1623 *lineno = zend_get_compiled_lineno();
1626 *lineno = zend_get_executed_lineno();
1629 *lineno = 0;
1634 *lineno = 0;
1643 int type, zend_string *filename, uint32_t lineno, const char *format, ...) {
1652 zend_error_va_list(type, filename, lineno, format, args);
1658 uint32_t lineno; \
1660 get_filename_lineno(type, &filename, &lineno); \
1662 zend_error_va_list(type, filename, lineno, format, args); \
1675 int type, zend_string *filename, uint32_t lineno, const char *format, ...)
1685 zend_error_va_list(type, filename, lineno, format, args);
1693 uint32_t lineno; \
1695 get_filename_lineno(type, &filename, &lineno); \
1697 zend_error_va_list(type, filename, lineno, format, args); \
1733 uint32_t lineno;
1734 get_filename_lineno(type, &filename, &lineno);
1735 zend_error_zstr_at(type, filename, lineno, message);
1751 zend_error_zstr_at(error->type, error->filename, error->lineno, error->message);