default_exception_ce   32 Zend/zend_exceptions.c static zend_class_entry *default_exception_ce;
default_exception_ce   44 Zend/zend_exceptions.c 	if (Z_TYPE_P(add_previous) != IS_OBJECT || !instanceof_function(Z_OBJCE_P(add_previous), default_exception_ce TSRMLS_CC)) {
default_exception_ce   49 Zend/zend_exceptions.c 		ancestor = zend_read_property(default_exception_ce, add_previous, "previous", sizeof("previous")-1, 1 TSRMLS_CC);
default_exception_ce   55 Zend/zend_exceptions.c 			ancestor = zend_read_property(default_exception_ce, ancestor, "previous", sizeof("previous")-1, 1 TSRMLS_CC);
default_exception_ce   57 Zend/zend_exceptions.c 		previous = zend_read_property(default_exception_ce, exception, "previous", sizeof("previous")-1, 1 TSRMLS_CC);
default_exception_ce   59 Zend/zend_exceptions.c 			zend_update_property(default_exception_ce, exception, "previous", sizeof("previous")-1, add_previous TSRMLS_CC);
default_exception_ce  171 Zend/zend_exceptions.c 	zend_update_property_string(default_exception_ce, &obj, "file", sizeof("file")-1, zend_get_executed_filename(TSRMLS_C) TSRMLS_CC);
default_exception_ce  172 Zend/zend_exceptions.c 	zend_update_property_long(default_exception_ce, &obj, "line", sizeof("line")-1, zend_get_executed_lineno(TSRMLS_C) TSRMLS_CC);
default_exception_ce  173 Zend/zend_exceptions.c 	zend_update_property(default_exception_ce, &obj, "trace", sizeof("trace")-1, trace TSRMLS_CC);
default_exception_ce  209 Zend/zend_exceptions.c 	if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, argc TSRMLS_CC, "|slO!", &message, &message_len, &code, &previous, default_exception_ce) == FAILURE) {
default_exception_ce  216 Zend/zend_exceptions.c 		zend_update_property_stringl(default_exception_ce, object, "message", sizeof("message")-1, message, message_len TSRMLS_CC);
default_exception_ce  220 Zend/zend_exceptions.c 		zend_update_property_long(default_exception_ce, object, "code", sizeof("code")-1, code TSRMLS_CC);
default_exception_ce  224 Zend/zend_exceptions.c 		zend_update_property(default_exception_ce, object, "previous", sizeof("previous")-1, previous TSRMLS_CC);
default_exception_ce  232 Zend/zend_exceptions.c 	value = zend_read_property(default_exception_ce, object, name, sizeof(name)-1, 0 TSRMLS_CC); \
default_exception_ce  264 Zend/zend_exceptions.c 	if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, argc TSRMLS_CC, "|sllslO!", &message, &message_len, &code, &severity, &filename, &filename_len, &lineno, &previous, default_exception_ce) == FAILURE) {
default_exception_ce  271 Zend/zend_exceptions.c 		zend_update_property_string(default_exception_ce, object, "message", sizeof("message")-1, message TSRMLS_CC);
default_exception_ce  275 Zend/zend_exceptions.c 		zend_update_property_long(default_exception_ce, object, "code", sizeof("code")-1, code TSRMLS_CC);
default_exception_ce  279 Zend/zend_exceptions.c 		zend_update_property(default_exception_ce, object, "previous", sizeof("previous")-1, previous TSRMLS_CC);
default_exception_ce  282 Zend/zend_exceptions.c 	zend_update_property_long(default_exception_ce, object, "severity", sizeof("severity")-1, severity TSRMLS_CC);
default_exception_ce  285 Zend/zend_exceptions.c 	    zend_update_property_string(default_exception_ce, object, "file", sizeof("file")-1, filename TSRMLS_CC);
default_exception_ce  289 Zend/zend_exceptions.c     	zend_update_property_long(default_exception_ce, object, "line", sizeof("line")-1, lineno TSRMLS_CC);
default_exception_ce  303 Zend/zend_exceptions.c 	value = zend_read_property(default_exception_ce, object, name, name_len, 0 TSRMLS_CC);
default_exception_ce  624 Zend/zend_exceptions.c 	trace = zend_read_property(default_exception_ce, getThis(), "trace", sizeof("trace")-1, 1 TSRMLS_CC);
default_exception_ce  652 Zend/zend_exceptions.c 	previous = zend_read_property(default_exception_ce, getThis(), "previous", sizeof("previous")-1, 1 TSRMLS_CC);
default_exception_ce  686 Zend/zend_exceptions.c 	while (exception && Z_TYPE_P(exception) == IS_OBJECT && instanceof_function(Z_OBJCE_P(exception), default_exception_ce TSRMLS_CC)) {
default_exception_ce  730 Zend/zend_exceptions.c 		exception = zend_read_property(default_exception_ce, exception, "previous", sizeof("previous")-1, 0 TSRMLS_CC);
default_exception_ce  741 Zend/zend_exceptions.c 	zend_update_property_string(default_exception_ce, getThis(), "string", sizeof("string")-1, str TSRMLS_CC);
default_exception_ce  799 Zend/zend_exceptions.c 	default_exception_ce = zend_register_internal_class(&ce TSRMLS_CC);
default_exception_ce  800 Zend/zend_exceptions.c 	default_exception_ce->create_object = zend_default_exception_new;
default_exception_ce  804 Zend/zend_exceptions.c 	zend_declare_property_string(default_exception_ce, "message", sizeof("message")-1, "", ZEND_ACC_PROTECTED TSRMLS_CC);
default_exception_ce  805 Zend/zend_exceptions.c 	zend_declare_property_string(default_exception_ce, "string", sizeof("string")-1, "", ZEND_ACC_PRIVATE TSRMLS_CC);
default_exception_ce  806 Zend/zend_exceptions.c 	zend_declare_property_long(default_exception_ce, "code", sizeof("code")-1, 0, ZEND_ACC_PROTECTED TSRMLS_CC);
default_exception_ce  807 Zend/zend_exceptions.c 	zend_declare_property_null(default_exception_ce, "file", sizeof("file")-1, ZEND_ACC_PROTECTED TSRMLS_CC);
default_exception_ce  808 Zend/zend_exceptions.c 	zend_declare_property_null(default_exception_ce, "line", sizeof("line")-1, ZEND_ACC_PROTECTED TSRMLS_CC);
default_exception_ce  809 Zend/zend_exceptions.c 	zend_declare_property_null(default_exception_ce, "trace", sizeof("trace")-1, ZEND_ACC_PRIVATE TSRMLS_CC);
default_exception_ce  810 Zend/zend_exceptions.c 	zend_declare_property_null(default_exception_ce, "previous", sizeof("previous")-1, ZEND_ACC_PRIVATE TSRMLS_CC);
default_exception_ce  813 Zend/zend_exceptions.c 	error_exception_ce = zend_register_internal_class_ex(&ce, default_exception_ce, NULL TSRMLS_CC);
default_exception_ce  821 Zend/zend_exceptions.c 	return default_exception_ce;
default_exception_ce  837 Zend/zend_exceptions.c 		if (!instanceof_function(exception_ce, default_exception_ce TSRMLS_CC)) {
default_exception_ce  839 Zend/zend_exceptions.c 			exception_ce = default_exception_ce;
default_exception_ce  842 Zend/zend_exceptions.c 		exception_ce = default_exception_ce;
default_exception_ce  848 Zend/zend_exceptions.c 		zend_update_property_string(default_exception_ce, ex, "message", sizeof("message")-1, message TSRMLS_CC);
default_exception_ce  851 Zend/zend_exceptions.c 		zend_update_property_long(default_exception_ce, ex, "code", sizeof("code")-1, code TSRMLS_CC);
default_exception_ce  877 Zend/zend_exceptions.c 	zend_update_property_long(default_exception_ce, ex, "severity", sizeof("severity")-1, severity TSRMLS_CC);
default_exception_ce  896 Zend/zend_exceptions.c 	if (instanceof_function(ce_exception, default_exception_ce TSRMLS_CC)) {
default_exception_ce  906 Zend/zend_exceptions.c 				zend_update_property_string(default_exception_ce, exception, "string", sizeof("string")-1, EG(exception) ? ce_exception->name : Z_STRVAL_P(str) TSRMLS_CC);
default_exception_ce  913 Zend/zend_exceptions.c 			if (instanceof_function(ce_exception, default_exception_ce TSRMLS_CC)) {
default_exception_ce  914 Zend/zend_exceptions.c 				file = zend_read_property(default_exception_ce, EG(exception), "file", sizeof("file")-1, 1 TSRMLS_CC);
default_exception_ce  915 Zend/zend_exceptions.c 				line = zend_read_property(default_exception_ce, EG(exception), "line", sizeof("line")-1, 1 TSRMLS_CC);
default_exception_ce  927 Zend/zend_exceptions.c 		str = zend_read_property(default_exception_ce, exception, "string", sizeof("string")-1, 1 TSRMLS_CC);
default_exception_ce  928 Zend/zend_exceptions.c 		file = zend_read_property(default_exception_ce, exception, "file", sizeof("file")-1, 1 TSRMLS_CC);
default_exception_ce  929 Zend/zend_exceptions.c 		line = zend_read_property(default_exception_ce, exception, "line", sizeof("line")-1, 1 TSRMLS_CC);
default_exception_ce  952 Zend/zend_exceptions.c 	if (!exception_ce || !instanceof_function(exception_ce, default_exception_ce TSRMLS_CC)) {
default_exception_ce  236 ext/intl/intl_error.c 					 *default_exception_ce;
default_exception_ce  238 ext/intl/intl_error.c 	default_exception_ce = zend_exception_get_default( TSRMLS_C );
default_exception_ce  243 ext/intl/intl_error.c 		default_exception_ce, NULL TSRMLS_CC );
default_exception_ce  244 ext/intl/intl_error.c 	IntlException_ce_ptr->create_object = default_exception_ce->create_object;