Lines Matching refs:sxe_object_handlers

2102 static zend_object_handlers sxe_object_handlers;  variable
2241 intern->zo.handlers = &sxe_object_handlers; in php_sxe_object_new()
2705 memcpy(&sxe_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
2706 sxe_object_handlers.offset = XtOffsetOf(php_sxe_object, zo); in PHP_MINIT_FUNCTION()
2707 sxe_object_handlers.dtor_obj = sxe_object_dtor; in PHP_MINIT_FUNCTION()
2708 sxe_object_handlers.free_obj = sxe_object_free_storage; in PHP_MINIT_FUNCTION()
2709 sxe_object_handlers.clone_obj = sxe_object_clone; in PHP_MINIT_FUNCTION()
2710 sxe_object_handlers.read_property = sxe_property_read; in PHP_MINIT_FUNCTION()
2711 sxe_object_handlers.write_property = sxe_property_write; in PHP_MINIT_FUNCTION()
2712 sxe_object_handlers.read_dimension = sxe_dimension_read; in PHP_MINIT_FUNCTION()
2713 sxe_object_handlers.write_dimension = sxe_dimension_write; in PHP_MINIT_FUNCTION()
2714 sxe_object_handlers.get_property_ptr_ptr = sxe_property_get_adr; in PHP_MINIT_FUNCTION()
2715 sxe_object_handlers.has_property = sxe_property_exists; in PHP_MINIT_FUNCTION()
2716 sxe_object_handlers.unset_property = sxe_property_delete; in PHP_MINIT_FUNCTION()
2717 sxe_object_handlers.has_dimension = sxe_dimension_exists; in PHP_MINIT_FUNCTION()
2718 sxe_object_handlers.unset_dimension = sxe_dimension_delete; in PHP_MINIT_FUNCTION()
2719 sxe_object_handlers.get_properties = sxe_get_properties; in PHP_MINIT_FUNCTION()
2720 sxe_object_handlers.compare = sxe_objects_compare; in PHP_MINIT_FUNCTION()
2721 sxe_object_handlers.cast_object = sxe_object_cast; in PHP_MINIT_FUNCTION()
2722 sxe_object_handlers.count_elements = sxe_count_elements; in PHP_MINIT_FUNCTION()
2723 sxe_object_handlers.get_debug_info = sxe_get_debug_info; in PHP_MINIT_FUNCTION()
2724 sxe_object_handlers.get_closure = NULL; in PHP_MINIT_FUNCTION()
2725 sxe_object_handlers.get_gc = sxe_get_gc; in PHP_MINIT_FUNCTION()