Home
last modified time | relevance | path

Searched refs:xml_parser_object_handlers (Results 1 – 1 of 1) sorted by relevance

/PHP-8.4/ext/xml/
H A Dxml.c122 static zend_object_handlers xml_parser_object_handlers; variable
230 xml_parser_ce->default_object_handlers = &xml_parser_object_handlers; in PHP_MINIT_FUNCTION()
232 memcpy(&xml_parser_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
233 xml_parser_object_handlers.offset = XtOffsetOf(xml_parser, std); in PHP_MINIT_FUNCTION()
234 xml_parser_object_handlers.free_obj = xml_parser_free_obj; in PHP_MINIT_FUNCTION()
235 xml_parser_object_handlers.get_gc = xml_parser_get_gc; in PHP_MINIT_FUNCTION()
236 xml_parser_object_handlers.get_constructor = xml_parser_get_constructor; in PHP_MINIT_FUNCTION()
237 xml_parser_object_handlers.clone_obj = NULL; in PHP_MINIT_FUNCTION()
238 xml_parser_object_handlers.compare = zend_objects_not_comparable; in PHP_MINIT_FUNCTION()

Completed in 12 milliseconds