Home
last modified time | relevance | path

Searched refs:handlers (Results 51 – 75 of 141) sorted by relevance

123456

/PHP-8.1/ext/curl/
H A Dshare.c146 intern->std.handlers = &curl_share_handlers; in curl_share_create_object()
/PHP-8.1/Zend/
H A Dzend_objects.c189 object->handlers = &std_object_handlers; in zend_objects_new()
216 if (EXPECTED(old_object->handlers == &std_object_handlers)) { in zend_objects_clone_members()
H A Dzend_vm_execute.skl60 /* Observer end handlers are called from ZEND_RETURN */
H A Dzend_object_handlers.c137 if (zobj->handlers->get_properties != zend_std_get_properties) { in zend_std_get_gc()
140 return zobj->handlers->get_properties(zobj); in zend_std_get_gc()
163 return object->handlers->get_properties(object); in zend_std_get_debug_info()
1900 if (obj->handlers->get_debug_info) { in zend_std_get_properties_for()
1902 ht = obj->handlers->get_debug_info(obj, &is_temp); in zend_std_get_properties_for()
1913 ht = obj->handlers->get_properties(obj); in zend_std_get_properties_for()
1927 if (zobj->handlers->get_properties_for) { in zend_get_properties_for()
1928 return zobj->handlers->get_properties_for(zobj, purpose); in zend_get_properties_for()
H A Dzend_builtin_functions.c747 properties = zobj->handlers->get_properties(zobj); in ZEND_FUNCTION()
754 if (EXPECTED(zobj->handlers == &std_object_handlers)) { in ZEND_FUNCTION()
812 properties = obj->handlers->get_properties(obj); in ZEND_FUNCTION()
820 obj->handlers != &std_object_handlers || in ZEND_FUNCTION()
1737 } else if (object->handlers->get_class_name == zend_std_get_class_name) { in zend_fetch_debug_backtrace()
1740 ZVAL_STR(&tmp, object->handlers->get_class_name(object)); in zend_fetch_debug_backtrace()
H A Dzend_alloc.c756 void *ptr = heap->storage->handlers.chunk_alloc(heap->storage, size, alignment);
768 heap->storage->handlers.chunk_free(heap->storage, addr, size);
779 if (heap->storage->handlers.chunk_truncate) {
780 return heap->storage->handlers.chunk_truncate(heap->storage, addr, old_size, new_size);
798 if (heap->storage->handlers.chunk_extend) {
799 return heap->storage->handlers.chunk_extend(heap->storage, addr, old_size, new_size);
3009 ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_handlers *handlers, void *data, size_t data… argument
3016 memcpy((zend_mm_handlers*)&tmp_storage.handlers, handlers, sizeof(zend_mm_handlers));
3018 …chunk = (zend_mm_chunk*)handlers->chunk_alloc(&tmp_storage, ZEND_MM_CHUNK_SIZE, ZEND_MM_CHUNK_SIZE…
3062 handlers->chunk_free(&tmp_storage, chunk, ZEND_MM_CHUNK_SIZE);
H A Dzend_alloc.h310 const zend_mm_handlers handlers; member
315 ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_handlers *handlers, void *data, size_t data…
/PHP-8.1/ext/libxml/
H A Dphp_libxml.h86 return (php_libxml_node_object *)((char*)(obj) - obj->handlers->offset); in php_libxml_node_fetch_object()
/PHP-8.1/ext/intl/transliterator/
H A Dtransliterator_class.c120 intern->zo.handlers = &Transliterator_handlers; in Transliterator_object_create()
/PHP-8.1/ext/session/tests/
H A Dsave_handler.inc53 // read() would be the best place for locking for most save handlers.
157 // All save handlers MUST implement this handler.
/PHP-8.1/ext/xsl/
H A Dphp_xsl.c107 intern->std.handlers = &xsl_object_handlers; in xsl_objects_new()
/PHP-8.1/ext/intl/breakiterator/
H A Dbreakiterator_class.cpp212 intern->zo.handlers = &BreakIterator_handlers; in BreakIterator_object_create()
/PHP-8.1/ext/phar/tests/
H A Dphar_metadata_write4.phpt53 … original data, checking for exceptions or the data getting set from destructors or error handlers.
/PHP-8.1/Zend/tests/
H A Dobject_handlers.phpt2 Magic object handlers segfaults and memory errors
/PHP-8.1/ext/dom/
H A Dphp_dom.c501 clone->std.handlers = dom_get_obj_handlers(); in dom_objects_store_clone_obj()
1071 intern->std.handlers = dom_get_obj_handlers(); in dom_objects_new()
1080 intern->dom.std.handlers = &dom_object_namespace_node_handlers; in dom_objects_namespace_node_new()
1105 intern->dom.std.handlers = &dom_xpath_object_handlers; in dom_xpath_objects_new()
1140 …nodemap_or_nodelist_objects_new(zend_class_entry *class_type, const zend_object_handlers *handlers) in dom_nodemap_or_nodelist_objects_new() argument
1155 intern->std.handlers = handlers; in dom_nodemap_or_nodelist_objects_new()
/PHP-8.1/main/
H A Dphp_output.h137 zend_stack handlers;
/PHP-8.1/ext/spl/
H A Dspl_heap.c425 intern->std.handlers = other->std.handlers; in spl_heap_object_new_ex()
442 intern->std.handlers = &spl_handler_SplPriorityQueue; in spl_heap_object_new_ex()
452 intern->std.handlers = &spl_handler_SplHeap; in spl_heap_object_new_ex()
/PHP-8.1/ext/shmop/
H A Dshmop.c87 intern->std.handlers = &shmop_object_handlers; in shmop_create_object()
/PHP-8.1/ext/intl/common/
H A Dcommon_enum.cpp203 intern->zo.handlers = &IntlIterator_handlers; in IntlIterator_object_create()
/PHP-8.1/
H A DUPGRADING.INTERNALS57 zend_class_(un)serialize_deny handlers which are removed.
107 - The closer, and fetch_error handlers have been voidified.
H A D.gdbinit209 set $handlers = $zvalue->value.obj.handlers
214 if $handlers->get_properties == &zend_std_get_properties
/PHP-8.1/ext/sysvsem/
H A Dsysvsem.c103 intern->std.handlers = &sysvsem_object_handlers; in sysvsem_create_object()
/PHP-8.1/ext/intl/calendar/
H A Dcalendar_class.cpp260 intern->zo.handlers = &Calendar_handlers; in Calendar_object_create()
/PHP-8.1/ext/enchant/
H A Denchant.c57 intern->std.handlers = &enchant_broker_handlers; in enchant_broker_create_object()
76 intern->std.handlers = &enchant_dict_handlers; in enchant_dict_create_object()
/PHP-8.1/ext/pspell/
H A Dpspell.c102 zobj->handlers = &php_pspell_handlers; in php_pspell_object_create()
140 zobj->handlers = &php_pspell_config_handlers; in php_pspell_config_object_create()

Completed in 68 milliseconds

123456