Home
last modified time | relevance | path

Searched refs:exception_ce (Results 1 – 25 of 58) sorted by relevance

123

/dports/www/pecl-solr/solr-2.5.1/src/php7/
H A Dphp_solr_exception.c41 PHP_SOLR_API void solr_throw_exception_ex(zend_class_entry *exception_ce, long code, const char *fi… in solr_throw_exception_ex() argument
57 object_val = zend_throw_exception(exception_ce, message, code); in solr_throw_exception_ex()
62 …zend_update_property_long(exception_ce, OBJ_FOR_PROP(&object), SOLR_SOURCELINE_NO_PROPERTY_NAME, s… in solr_throw_exception_ex()
65 …zend_update_property_string(exception_ce, OBJ_FOR_PROP(&object), SOLR_SOURCEFILE_PROPERTY_NAME, si… in solr_throw_exception_ex()
68 …zend_update_property_string(exception_ce, OBJ_FOR_PROP(&object), SOLR_ZIFNAME_PROPERTY_NAME, sizeo… in solr_throw_exception_ex()
79 PHP_SOLR_API void solr_throw_exception(zend_class_entry *exception_ce, char *message, long code, co… in solr_throw_exception() argument
85 object_val = zend_throw_exception(exception_ce, message, code); in solr_throw_exception()
89 …zend_update_property_long(exception_ce, OBJ_FOR_PROP(&object), SOLR_SOURCELINE_NO_PROPERTY_NAME, s… in solr_throw_exception()
92 …zend_update_property_string(exception_ce, OBJ_FOR_PROP(&object), SOLR_SOURCEFILE_PROPERTY_NAME, si… in solr_throw_exception()
95 …zend_update_property_string(exception_ce, OBJ_FOR_PROP(&object), SOLR_ZIFNAME_PROPERTY_NAME, sizeo… in solr_throw_exception()
/dports/textproc/zorba/zorba-2.7.0/swig/php/
H A Dzorba_api.i43 ZEND_API zval * mt_zend_throw_exception(zend_class_entry *exception_ce, const char *message, long c…
45 zval * mt_zend_throw_exception(zend_class_entry *exception_ce, const char *message, long code TSRML… in mt_zend_throw_exception() argument
49 zval *retval = zend_throw_exception(exception_ce, mt_message, code, NULL); in mt_zend_throw_exception()
51 zval *retval = zend_throw_exception(exception_ce, mt_message, code); in mt_zend_throw_exception()
/dports/net/pecl-amqp/amqp-1.10.2/
H A Damqp.c294 void php_amqp_zend_throw_exception_short(amqp_rpc_reply_t reply, zend_class_entry *exception_ce TSR… in php_amqp_zend_throw_exception_short()
295 …php_amqp_zend_throw_exception(reply, exception_ce, PHP_AMQP_G(error_message), PHP_AMQP_G(error_cod… in php_amqp_zend_throw_exception_short()
298 void php_amqp_zend_throw_exception(amqp_rpc_reply_t reply, zend_class_entry *exception_ce, const ch… in php_amqp_zend_throw_exception() argument
304 exception_ce = amqp_exception_class_entry; in php_amqp_zend_throw_exception()
307 exception_ce = amqp_exception_class_entry; in php_amqp_zend_throw_exception()
313 exception_ce = amqp_connection_exception_class_entry; in php_amqp_zend_throw_exception()
323 exception_ce = amqp_exception_class_entry; in php_amqp_zend_throw_exception()
327 zend_throw_exception(exception_ce, message, code TSRMLS_CC); in php_amqp_zend_throw_exception()
/dports/www/mod_php81/php-8.1.1/Zend/
H A Dzend_exceptions.c807 if (!exception_ce) { in zend_throw_exception_zstr()
808 exception_ce = zend_ce_exception; in zend_throw_exception_zstr()
811 ZEND_ASSERT(instanceof_function(exception_ce, zend_ce_throwable) in zend_throw_exception_zstr()
814 object_init_ex(&ex, exception_ce); in zend_throw_exception_zstr()
822 zend_update_property_ex(exception_ce, Z_OBJ(ex), ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception_zstr()
834 zend_object *ex = zend_throw_exception_zstr(exception_ce, msg_str, code); in zend_throw_exception()
851 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
859 zend_object *obj = zend_throw_exception_zstr(exception_ce, message, code); in zend_throw_error_exception()
860 if (exception_ce && instanceof_function(exception_ce, zend_ce_error_exception)) { in zend_throw_error_exception()
980 zend_class_entry *exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object() local
[all …]
H A Dzend_exceptions.h60 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
61 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
65 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, zend_string *messa…
/dports/lang/php81/php-8.1.1/Zend/
H A Dzend_exceptions.c807 if (!exception_ce) { in zend_throw_exception_zstr()
808 exception_ce = zend_ce_exception; in zend_throw_exception_zstr()
811 ZEND_ASSERT(instanceof_function(exception_ce, zend_ce_throwable) in zend_throw_exception_zstr()
814 object_init_ex(&ex, exception_ce); in zend_throw_exception_zstr()
822 zend_update_property_ex(exception_ce, Z_OBJ(ex), ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception_zstr()
834 zend_object *ex = zend_throw_exception_zstr(exception_ce, msg_str, code); in zend_throw_exception()
851 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
859 zend_object *obj = zend_throw_exception_zstr(exception_ce, message, code); in zend_throw_error_exception()
860 if (exception_ce && instanceof_function(exception_ce, zend_ce_error_exception)) { in zend_throw_error_exception()
980 zend_class_entry *exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object() local
[all …]
H A Dzend_exceptions.h60 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
61 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
65 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, zend_string *messa…
/dports/devel/pecl-mustache/mustache-0.9.2/
H A Dmustache_exceptions.cpp21 zend_class_entry * exception_ce = zend_exception_get_default(); in PHP_MINIT_FUNCTION() local
26 … MustacheException_ce_ptr = zend_register_internal_class_ex(&mustache_exception_ce, exception_ce); in PHP_MINIT_FUNCTION()
27 MustacheException_ce_ptr->create_object = exception_ce->create_object; in PHP_MINIT_FUNCTION()
/dports/lang/php73/php-7.3.33/Zend/
H A Dzend_exceptions.h58 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
59 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
63 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *messag…
H A Dzend_exceptions.c907 if (exception_ce) { in zend_throw_exception()
908 if (!instanceof_function(exception_ce, zend_ce_throwable)) { in zend_throw_exception()
910 exception_ce = zend_ce_exception; in zend_throw_exception()
913 exception_ce = zend_ce_exception; in zend_throw_exception()
915 object_init_ex(&ex, exception_ce); in zend_throw_exception()
925 zend_update_property_ex(exception_ce, &ex, ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception()
942 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
951 zend_object *obj = zend_throw_exception(exception_ce, message, code); in zend_throw_error_exception()
1051 zend_class_entry *exception_ce; in zend_throw_exception_object() local
1057 exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object()
[all …]
/dports/lang/php74/php-7.4.27/Zend/
H A Dzend_exceptions.h58 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
59 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
63 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *messag…
H A Dzend_exceptions.c911 if (exception_ce) { in zend_throw_exception()
912 if (!instanceof_function(exception_ce, zend_ce_throwable)) { in zend_throw_exception()
914 exception_ce = zend_ce_exception; in zend_throw_exception()
917 exception_ce = zend_ce_exception; in zend_throw_exception()
919 object_init_ex(&ex, exception_ce); in zend_throw_exception()
929 zend_update_property_ex(exception_ce, &ex, ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception()
946 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
955 zend_object *obj = zend_throw_exception(exception_ce, message, code); in zend_throw_error_exception()
1055 zend_class_entry *exception_ce; in zend_throw_exception_object() local
1061 exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object()
[all …]
/dports/www/mod_php73/php-7.3.33/Zend/
H A Dzend_exceptions.h58 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
59 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
63 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *messag…
H A Dzend_exceptions.c907 if (exception_ce) { in zend_throw_exception()
908 if (!instanceof_function(exception_ce, zend_ce_throwable)) { in zend_throw_exception()
910 exception_ce = zend_ce_exception; in zend_throw_exception()
913 exception_ce = zend_ce_exception; in zend_throw_exception()
915 object_init_ex(&ex, exception_ce); in zend_throw_exception()
925 zend_update_property_ex(exception_ce, &ex, ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception()
942 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
951 zend_object *obj = zend_throw_exception(exception_ce, message, code); in zend_throw_error_exception()
1051 zend_class_entry *exception_ce; in zend_throw_exception_object() local
1057 exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object()
[all …]
/dports/www/mod_php74/php-7.4.27/Zend/
H A Dzend_exceptions.h58 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
59 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
63 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *messag…
H A Dzend_exceptions.c911 if (exception_ce) { in zend_throw_exception()
912 if (!instanceof_function(exception_ce, zend_ce_throwable)) { in zend_throw_exception()
914 exception_ce = zend_ce_exception; in zend_throw_exception()
917 exception_ce = zend_ce_exception; in zend_throw_exception()
919 object_init_ex(&ex, exception_ce); in zend_throw_exception()
929 zend_update_property_ex(exception_ce, &ex, ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception()
946 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
955 zend_object *obj = zend_throw_exception(exception_ce, message, code); in zend_throw_error_exception()
1055 zend_class_entry *exception_ce; in zend_throw_exception_object() local
1061 exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object()
[all …]
/dports/lang/php80/php-8.0.15/Zend/
H A Dzend_exceptions.h60 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
61 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
65 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, zend_string *messa…
H A Dzend_exceptions.c848 if (!exception_ce) { in zend_throw_exception_zstr()
849 exception_ce = zend_ce_exception; in zend_throw_exception_zstr()
852 ZEND_ASSERT(instanceof_function(exception_ce, zend_ce_throwable) in zend_throw_exception_zstr()
855 object_init_ex(&ex, exception_ce); in zend_throw_exception_zstr()
859 zend_update_property_ex(exception_ce, Z_OBJ(ex), ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp); in zend_throw_exception_zstr()
863 zend_update_property_ex(exception_ce, Z_OBJ(ex), ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception_zstr()
875 zend_object *ex = zend_throw_exception_zstr(exception_ce, msg_str, code); in zend_throw_exception()
892 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
901 zend_object *obj = zend_throw_exception_zstr(exception_ce, message, code); in zend_throw_error_exception()
1003 zend_class_entry *exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object() local
[all …]
/dports/www/mod_php80/php-8.0.15/Zend/
H A Dzend_exceptions.h60 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
61 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
65 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, zend_string *messa…
H A Dzend_exceptions.c848 if (!exception_ce) { in zend_throw_exception_zstr()
849 exception_ce = zend_ce_exception; in zend_throw_exception_zstr()
852 ZEND_ASSERT(instanceof_function(exception_ce, zend_ce_throwable) in zend_throw_exception_zstr()
855 object_init_ex(&ex, exception_ce); in zend_throw_exception_zstr()
859 zend_update_property_ex(exception_ce, Z_OBJ(ex), ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp); in zend_throw_exception_zstr()
863 zend_update_property_ex(exception_ce, Z_OBJ(ex), ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception_zstr()
875 zend_object *ex = zend_throw_exception_zstr(exception_ce, msg_str, code); in zend_throw_exception()
892 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
901 zend_object *obj = zend_throw_exception_zstr(exception_ce, message, code); in zend_throw_error_exception()
1003 zend_class_entry *exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object() local
[all …]
/dports/textproc/redland-bindings/redland-bindings-1.0.17.1/php/
H A Dredland-post.i126 zend_class_entry *exception_ce; in librdf_php_world_init() local
132 exception_ce = zend_exception_get_default(); in librdf_php_world_init()
135 exception_ce, in librdf_php_world_init()
/dports/devel/pecl-xdebug/xdebug-3.1.2/src/develop/
H A Dstack.c962 zend_class_entry *exception_ce = exception->ce;
966 zend_class_entry *exception_ce = Z_OBJCE_P(exception);
973 …previous_exception = zend_read_property(exception_ce, exception, "previous", sizeof("previous")-1,…
976 …xdebug_message_trace = zend_read_property(exception_ce, Z_OBJ_P(previous_exception), "xdebug_messa…
978 …xdebug_message_trace = zend_read_property(exception_ce, previous_exception, "xdebug_message", size…
988 …xdebug_append_error_description(&tmp_str, PG(html_errors), STR_NAME_VAL(exception_ce->name), messa…
991 …zend_update_property_string(exception_ce, exception, "xdebug_message", sizeof("xdebug_message")-1,…
998 …if (XINI_DEV(show_ex_trace) || (instanceof_function(exception_ce, zend_ce_error) && XINI_DEV(show_…
1000 …xdebug_log_stack(STR_NAME_VAL(exception_ce->name), Z_STRVAL_P(message), Z_STRVAL_P(file), Z_LVAL_P…
/dports/databases/pecl-couchbase/couchbase-2.6.2/
H A Dexception.c22 static void pcbc_exception_make(zval *return_value, zend_class_entry *exception_ce, long code, in pcbc_exception_make() argument
/dports/devel/pecl-xdebug/xdebug-3.1.2/src/base/
H A Dbase.c1331 zend_class_entry *exception_ce; local
1355 exception_ce = exception->ce;
1357 exception_ce = Z_OBJCE_P(exception);
1360 code = zend_read_property(exception_ce, exception, "code", sizeof("code")-1, 0, &dummy);
1361 message = zend_read_property(exception_ce, exception, "message", sizeof("message")-1, 0, &dummy);
1362 file = zend_read_property(exception_ce, exception, "file", sizeof("file")-1, 0, &dummy);
1363 line = zend_read_property(exception_ce, exception, "line", sizeof("line")-1, 0, &dummy);
/dports/devel/pecl-xdebug/xdebug-3.1.2/src/debugger/
H A Ddebugger.c343 zend_class_entry *exception_ce = exception->ce; local
347 zend_class_entry *exception_ce = Z_OBJCE_P(exception);
362 zend_class_entry *ce_ptr = exception_ce;
382 (char*) STR_NAME_VAL(exception_ce->name),

123