Searched refs:xml_parser_object_handlers (Results 1 – 1 of 1) sorted by relevance
148 static zend_object_handlers xml_parser_object_handlers; variable264 memcpy(&xml_parser_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()265 xml_parser_object_handlers.offset = XtOffsetOf(xml_parser, std); in PHP_MINIT_FUNCTION()266 xml_parser_object_handlers.free_obj = xml_parser_free_obj; in PHP_MINIT_FUNCTION()267 xml_parser_object_handlers.get_gc = xml_parser_get_gc; in PHP_MINIT_FUNCTION()268 xml_parser_object_handlers.get_constructor = xml_parser_get_constructor; in PHP_MINIT_FUNCTION()269 xml_parser_object_handlers.clone_obj = NULL; in PHP_MINIT_FUNCTION()270 xml_parser_object_handlers.compare = zend_objects_not_comparable; in PHP_MINIT_FUNCTION()357 intern->std.handlers = &xml_parser_object_handlers; in xml_parser_create_object()
Completed in 11 milliseconds