Lines Matching refs:lineno
683 attr = zend_add_attribute(&func->common.attributes, old_attr->name, old_attr->argc, old_attr->flags, old_attr->offset, old_attr->lineno);
1189 ZEND_API ZEND_COLD ZEND_NORETURN void _zend_bailout(const char *filename, uint32_t lineno) /* {{{ */
1193 zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno);
1400 info->lineno = error_lineno;
1546 static ZEND_COLD void get_filename_lineno(int type, zend_string **filename, uint32_t *lineno) {
1547 /* Obtain relevant filename and lineno */
1552 *lineno = 0;
1569 *lineno = zend_get_compiled_lineno();
1572 *lineno = zend_get_executed_lineno();
1575 *lineno = 0;
1580 *lineno = 0;
1589 int type, zend_string *filename, uint32_t lineno, const char *format, ...) {
1598 zend_error_va_list(type, filename, lineno, format, args);
1604 uint32_t lineno;
1607 get_filename_lineno(type, &filename, &lineno);
1609 zend_error_va_list(type, filename, lineno, format, args);
1615 uint32_t lineno;
1618 get_filename_lineno(type, &filename, &lineno);
1620 zend_error_va_list(type, filename, lineno, format, args);
1625 int type, zend_string *filename, uint32_t lineno, const char *format, ...)
1635 zend_error_va_list(type, filename, lineno, format, args);
1644 uint32_t lineno;
1647 get_filename_lineno(type, &filename, &lineno);
1649 zend_error_va_list(type, filename, lineno, format, args);
1675 uint32_t lineno;
1676 get_filename_lineno(type, &filename, &lineno);
1677 zend_error_zstr_at(type, filename, lineno, message);
1693 zend_error_zstr_at(error->type, error->filename, error->lineno, error->message);