Lines Matching refs:sxe_object_handlers

2066 static zend_object_handlers sxe_object_handlers;  variable
2659 ce_SimpleXMLElement->default_object_handlers = &sxe_object_handlers; in PHP_MINIT_FUNCTION()
2662 memcpy(&sxe_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
2663 sxe_object_handlers.offset = XtOffsetOf(php_sxe_object, zo); in PHP_MINIT_FUNCTION()
2664 sxe_object_handlers.free_obj = sxe_object_free_storage; in PHP_MINIT_FUNCTION()
2665 sxe_object_handlers.clone_obj = sxe_object_clone; in PHP_MINIT_FUNCTION()
2666 sxe_object_handlers.read_property = sxe_property_read; in PHP_MINIT_FUNCTION()
2667 sxe_object_handlers.write_property = sxe_property_write; in PHP_MINIT_FUNCTION()
2668 sxe_object_handlers.read_dimension = sxe_dimension_read; in PHP_MINIT_FUNCTION()
2669 sxe_object_handlers.write_dimension = sxe_dimension_write; in PHP_MINIT_FUNCTION()
2670 sxe_object_handlers.get_property_ptr_ptr = sxe_property_get_adr; in PHP_MINIT_FUNCTION()
2671 sxe_object_handlers.has_property = sxe_property_exists; in PHP_MINIT_FUNCTION()
2672 sxe_object_handlers.unset_property = sxe_property_delete; in PHP_MINIT_FUNCTION()
2673 sxe_object_handlers.has_dimension = sxe_dimension_exists; in PHP_MINIT_FUNCTION()
2674 sxe_object_handlers.unset_dimension = sxe_dimension_delete; in PHP_MINIT_FUNCTION()
2675 sxe_object_handlers.get_properties = sxe_get_properties; in PHP_MINIT_FUNCTION()
2676 sxe_object_handlers.compare = sxe_objects_compare; in PHP_MINIT_FUNCTION()
2677 sxe_object_handlers.cast_object = sxe_object_cast; in PHP_MINIT_FUNCTION()
2678 sxe_object_handlers.count_elements = sxe_count_elements; in PHP_MINIT_FUNCTION()
2679 sxe_object_handlers.get_debug_info = sxe_get_debug_info; in PHP_MINIT_FUNCTION()
2680 sxe_object_handlers.get_closure = NULL; in PHP_MINIT_FUNCTION()
2681 sxe_object_handlers.get_gc = sxe_get_gc; in PHP_MINIT_FUNCTION()