Lines Matching refs:lineno

682 			attr = zend_add_attribute(&func->common.attributes, old_attr->name, old_attr->argc, old_attr->flags, old_attr->offset, old_attr->lineno);
1173 ZEND_API ZEND_COLD ZEND_NORETURN void _zend_bailout(const char *filename, uint32_t lineno) /* {{{ */
1177 zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno);
1385 info->lineno = error_lineno;
1531 static ZEND_COLD void get_filename_lineno(int type, zend_string **filename, uint32_t *lineno) {
1532 /* Obtain relevant filename and lineno */
1537 *lineno = 0;
1554 *lineno = zend_get_compiled_lineno();
1557 *lineno = zend_get_executed_lineno();
1560 *lineno = 0;
1565 *lineno = 0;
1574 int type, zend_string *filename, uint32_t lineno, const char *format, ...) {
1583 zend_error_va_list(type, filename, lineno, format, args);
1589 uint32_t lineno;
1592 get_filename_lineno(type, &filename, &lineno);
1594 zend_error_va_list(type, filename, lineno, format, args);
1600 uint32_t lineno;
1603 get_filename_lineno(type, &filename, &lineno);
1605 zend_error_va_list(type, filename, lineno, format, args);
1610 int type, zend_string *filename, uint32_t lineno, const char *format, ...)
1620 zend_error_va_list(type, filename, lineno, format, args);
1629 uint32_t lineno;
1632 get_filename_lineno(type, &filename, &lineno);
1634 zend_error_va_list(type, filename, lineno, format, args);
1660 uint32_t lineno;
1661 get_filename_lineno(type, &filename, &lineno);
1662 zend_error_zstr_at(type, filename, lineno, message);
1678 zend_error_zstr_at(error->type, error->filename, error->lineno, error->message);