Lines Matching refs:spl_handler_ArrayObject

40 zend_object_handlers spl_handler_ArrayObject;  variable
192 } else if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayObject) { in spl_array_object_new_ex()
214 intern->std.handlers = &spl_handler_ArrayObject; in spl_array_object_new_ex()
1124 …if (Z_OBJ_HT_P(array) == &spl_handler_ArrayObject || Z_OBJ_HT_P(array) == &spl_handler_ArrayIterat… in spl_array_set_array()
1962 memcpy(&spl_handler_ArrayObject, zend_get_std_object_handlers(), sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
1964 spl_handler_ArrayObject.offset = XtOffsetOf(spl_array_object, std); in PHP_MINIT_FUNCTION()
1966 spl_handler_ArrayObject.clone_obj = spl_array_object_clone; in PHP_MINIT_FUNCTION()
1967 spl_handler_ArrayObject.read_dimension = spl_array_read_dimension; in PHP_MINIT_FUNCTION()
1968 spl_handler_ArrayObject.write_dimension = spl_array_write_dimension; in PHP_MINIT_FUNCTION()
1969 spl_handler_ArrayObject.unset_dimension = spl_array_unset_dimension; in PHP_MINIT_FUNCTION()
1970 spl_handler_ArrayObject.has_dimension = spl_array_has_dimension; in PHP_MINIT_FUNCTION()
1971 spl_handler_ArrayObject.count_elements = spl_array_object_count_elements; in PHP_MINIT_FUNCTION()
1973 spl_handler_ArrayObject.get_properties = spl_array_get_properties; in PHP_MINIT_FUNCTION()
1974 spl_handler_ArrayObject.get_debug_info = spl_array_get_debug_info; in PHP_MINIT_FUNCTION()
1975 spl_handler_ArrayObject.get_gc = spl_array_get_gc; in PHP_MINIT_FUNCTION()
1976 spl_handler_ArrayObject.read_property = spl_array_read_property; in PHP_MINIT_FUNCTION()
1977 spl_handler_ArrayObject.write_property = spl_array_write_property; in PHP_MINIT_FUNCTION()
1978 spl_handler_ArrayObject.get_property_ptr_ptr = spl_array_get_property_ptr_ptr; in PHP_MINIT_FUNCTION()
1979 spl_handler_ArrayObject.has_property = spl_array_has_property; in PHP_MINIT_FUNCTION()
1980 spl_handler_ArrayObject.unset_property = spl_array_unset_property; in PHP_MINIT_FUNCTION()
1982 spl_handler_ArrayObject.compare_objects = spl_array_compare_objects; in PHP_MINIT_FUNCTION()
1983 spl_handler_ArrayObject.dtor_obj = zend_objects_destroy_object; in PHP_MINIT_FUNCTION()
1984 spl_handler_ArrayObject.free_obj = spl_array_object_free_storage; in PHP_MINIT_FUNCTION()
1992 memcpy(&spl_handler_ArrayIterator, &spl_handler_ArrayObject, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()