Lines Matching refs:lineno
636 attr = zend_add_attribute(&func->common.attributes, old_attr->name, old_attr->argc, old_attr->flags, old_attr->offset, old_attr->lineno);
1160 ZEND_API ZEND_COLD ZEND_NORETURN void _zend_bailout(const char *filename, uint32_t lineno) /* {{{ */
1164 zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno);
1437 static ZEND_COLD void get_filename_lineno(int type, const char **filename, uint32_t *lineno) {
1438 /* Obtain relevant filename and lineno */
1443 *lineno = 0;
1460 *lineno = zend_get_compiled_lineno();
1465 *lineno = 0;
1467 *lineno = zend_get_executed_lineno();
1471 *lineno = 0;
1476 *lineno = 0;
1485 int type, const char *filename, uint32_t lineno, const char *format, ...) {
1494 zend_error_va_list(type, filename, lineno, format, args);
1500 uint32_t lineno;
1503 get_filename_lineno(type, &filename, &lineno);
1505 zend_error_va_list(type, filename, lineno, format, args);
1510 int type, const char *filename, uint32_t lineno, const char *format, ...)
1520 zend_error_va_list(type, filename, lineno, format, args);
1529 uint32_t lineno;
1532 get_filename_lineno(type, &filename, &lineno);
1534 zend_error_va_list(type, filename, lineno, format, args);
1542 uint32_t lineno;
1543 get_filename_lineno(type, &filename, &lineno);
1544 zend_error_impl(type, filename, lineno, message);