Home
last modified time | relevance | path

Searched refs:handlers (Results 26 – 50 of 141) sorted by relevance

123456

/PHP-8.1/ext/standard/tests/streams/
H A Dbug67626.phpt2 Bug #67626: Exceptions not properly handled in user stream handlers
/PHP-8.1/Zend/tests/
H A Dthrowing_overloaded_compound_assign_op.phpt2 Exception in compound assign op should prevent call to overloaded object handlers
/PHP-8.1/ext/zend_test/tests/
H A Dobserver_error_01.phpt2 Observer: End handlers fire after a fatal error
H A Dobserver_error_03.phpt2 Observer: non-fatal errors do not fire end handlers prematurely
H A Dobserver_error_05.phpt2 Observer: End handlers fire after a userland fatal error
/PHP-8.1/ext/intl/collator/
H A Dcollator_class.c51 intern->zo.handlers = &Collator_handlers; in Collator_object_create()
/PHP-8.1/ext/xml/tests/
H A Dxml011.phpt2 XML Parser test: concat character data and set empty handlers
/PHP-8.1/ext/intl/formatter/
H A Dformatter_class.c54 intern->zo.handlers = &NumberFormatter_handlers; in NumberFormatter_object_create()
/PHP-8.1/ext/intl/msgformat/
H A Dmsgformat_class.c52 intern->zo.handlers = &MessageFormatter_handlers; in MessageFormatter_object_create()
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_helpers.c1174 retval = obj->handlers->read_dimension(obj, dim, BP_VAR_R, result); in zend_jit_fetch_dim_obj_r_helper()
1201 retval = obj->handlers->read_dimension(obj, dim, BP_VAR_IS, result); in zend_jit_fetch_dim_obj_is_helper()
1382 retval = obj->handlers->read_dimension(obj, dim, type, result); in zend_jit_fetch_dim_obj_helper()
1496 obj->handlers->write_dimension(obj, dim, value); in zend_jit_assign_dim_helper()
1580 z = obj->handlers->read_dimension(obj, dim, BP_VAR_R, &rv); in zend_jit_assign_dim_op_helper()
1584 obj->handlers->write_dimension(obj, dim, &res); in zend_jit_assign_dim_op_helper()
2550 object->handlers->write_property(object, name, &res, cache_slot); in _zend_jit_assign_op_overloaded_property()
2854 zobj->handlers->write_property(zobj, name, &z_copy, cache_slot); in zend_jit_pre_inc_obj_helper()
2924 zobj->handlers->write_property(zobj, name, &z_copy, cache_slot); in zend_jit_pre_dec_obj_helper()
2985 zobj->handlers->write_property(zobj, name, &z_copy, cache_slot); in zend_jit_post_inc_obj_helper()
[all …]
/PHP-8.1/tests/output/
H A Dob_013.phpt2 output buffering - handlers/status
/PHP-8.1/Zend/
H A Dzend_iterators.c86 iter->std.handlers = &iterator_object_handlers; in zend_iterator_init()
H A Dzend_signal.h61 zend_signal_entry_t handlers[NSIG]; member
H A DREADME.md33 `ZEND_VM` architecture allows specializing opcode handlers according to
42 opcode handlers and helpers. The typical opcode handler template looks like
58 `<HANDLER'S CODE>` is a handler's code itself. For most handlers it stills the
H A Dzend_gc.c707 ht = obj->handlers->get_gc(obj, &zv, &n); in gc_scan_black()
831 ht = obj->handlers->get_gc(obj, &zv, &n); in gc_mark_grey()
1022 HashTable *ht = obj->handlers->get_gc(obj, &zv, &n); in gc_scan()
1175 && (obj->handlers->dtor_obj != zend_objects_destroy_object in gc_collect_white()
1179 ht = obj->handlers->get_gc(obj, &zv, &n); in gc_collect_white()
1363 ht = obj->handlers->get_gc(obj, &zv, &n); in gc_remove_nested_data_from_buffer()
1507 if (obj->handlers->dtor_obj != zend_objects_destroy_object in zend_gc_collect_cycles()
1553 obj->handlers->dtor_obj(obj); in zend_gc_collect_cycles()
1585 current->ref = GC_MAKE_GARBAGE(((char*)obj) - obj->handlers->offset); in zend_gc_collect_cycles()
1589 obj->handlers->free_obj(obj); in zend_gc_collect_cycles()
/PHP-8.1/ext/curl/tests/
H A Dbug76675.phpt2 Bug #76675 (Segfault with H2 server push write/writeheader handlers)
H A Dcurl_basic_018.phpt35 // add handlers
/PHP-8.1/sapi/fpm/tests/
H A Dgh9921-php-value-ext-mod-handlers.phpt2 FPM: GH-9921 - loading shared ext in FPM config does not register module handlers
/PHP-8.1/ext/intl/dateformat/
H A Ddateformat_class.c60 intern->zo.handlers = &IntlDateFormatter_handlers; in IntlDateFormatter_object_create()
H A Ddatepatterngenerator_class.cpp101 intern->zo.handlers = &IntlDatePatternGenerator_handlers; in IntlDatePatternGenerator_object_create()
/PHP-8.1/ext/intl/spoofchecker/
H A Dspoofchecker_class.c50 intern->zo.handlers = &Spoofchecker_handlers; in Spoofchecker_object_create()
/PHP-8.1/ext/mysqli/
H A Dmysqli.c420 zend_object_handlers *handlers; in mysqli_objects_new() local
436 handlers = &mysqli_object_link_handlers; in mysqli_objects_new()
438 handlers = &mysqli_object_driver_handlers; in mysqli_objects_new()
440 handlers = &mysqli_object_stmt_handlers; in mysqli_objects_new()
442 handlers = &mysqli_object_result_handlers; in mysqli_objects_new()
444 handlers = &mysqli_object_warning_handlers; in mysqli_objects_new()
446 handlers = &mysqli_object_handlers; in mysqli_objects_new()
449 intern->zo.handlers = handlers; in mysqli_objects_new()
/PHP-8.1/ext/dba/
H A Ddba.c446 smart_str handlers = {0}; in PHP_MINFO_FUNCTION() local
449 smart_str_appends(&handlers, hptr->name); in PHP_MINFO_FUNCTION()
450 smart_str_appendc(&handlers, ' '); in PHP_MINFO_FUNCTION()
455 if (handlers.s) { in PHP_MINFO_FUNCTION()
456 smart_str_0(&handlers); in PHP_MINFO_FUNCTION()
457 php_info_print_table_row(2, "Supported handlers", ZSTR_VAL(handlers.s)); in PHP_MINFO_FUNCTION()
458 smart_str_free(&handlers); in PHP_MINFO_FUNCTION()
/PHP-8.1/Zend/Optimizer/
H A Dscdf.h46 } handlers; member
/PHP-8.1/ext/standard/
H A Dincomplete_class.c104 object->handlers = &php_incomplete_object_handlers; in php_create_incomplete_object()

Completed in 56 milliseconds

123456