Home
last modified time | relevance | path

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

/PHP-8.1/ext/xml/
H A Dxml.c147 static zend_object_handlers xml_parser_object_handlers; variable
258 memcpy(&xml_parser_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
259 xml_parser_object_handlers.offset = XtOffsetOf(xml_parser, std); in PHP_MINIT_FUNCTION()
260 xml_parser_object_handlers.free_obj = xml_parser_free_obj; in PHP_MINIT_FUNCTION()
261 xml_parser_object_handlers.get_gc = xml_parser_get_gc; in PHP_MINIT_FUNCTION()
262 xml_parser_object_handlers.get_constructor = xml_parser_get_constructor; in PHP_MINIT_FUNCTION()
263 xml_parser_object_handlers.clone_obj = NULL; in PHP_MINIT_FUNCTION()
264 xml_parser_object_handlers.compare = zend_objects_not_comparable; in PHP_MINIT_FUNCTION()
351 intern->std.handlers = &xml_parser_object_handlers; in xml_parser_create_object()

Completed in 8 milliseconds