Searched refs:xml_parser_object_handlers (Results 1 – 1 of 1) sorted by relevance
138 static zend_object_handlers xml_parser_object_handlers; variable248 xml_parser_ce->default_object_handlers = &xml_parser_object_handlers; in PHP_MINIT_FUNCTION()250 memcpy(&xml_parser_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()251 xml_parser_object_handlers.offset = XtOffsetOf(xml_parser, std); in PHP_MINIT_FUNCTION()252 xml_parser_object_handlers.free_obj = xml_parser_free_obj; in PHP_MINIT_FUNCTION()253 xml_parser_object_handlers.get_gc = xml_parser_get_gc; in PHP_MINIT_FUNCTION()254 xml_parser_object_handlers.get_constructor = xml_parser_get_constructor; in PHP_MINIT_FUNCTION()255 xml_parser_object_handlers.clone_obj = NULL; in PHP_MINIT_FUNCTION()256 xml_parser_object_handlers.compare = zend_objects_not_comparable; in PHP_MINIT_FUNCTION()
Completed in 7 milliseconds