Lines Matching refs:spl_handler_ArrayObject
36 zend_object_handlers spl_handler_ArrayObject; variable
190 } else if (orig->handlers == &spl_handler_ArrayObject) { in spl_array_object_new_ex()
211 intern->std.handlers = &spl_handler_ArrayObject; in spl_array_object_new_ex()
1140 …if (Z_OBJ_HT_P(array) == &spl_handler_ArrayObject || Z_OBJ_HT_P(array) == &spl_handler_ArrayIterat… in spl_array_set_array()
1946 memcpy(&spl_handler_ArrayObject, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
1948 spl_handler_ArrayObject.offset = XtOffsetOf(spl_array_object, std); in PHP_MINIT_FUNCTION()
1950 spl_handler_ArrayObject.clone_obj = spl_array_object_clone; in PHP_MINIT_FUNCTION()
1951 spl_handler_ArrayObject.read_dimension = spl_array_read_dimension; in PHP_MINIT_FUNCTION()
1952 spl_handler_ArrayObject.write_dimension = spl_array_write_dimension; in PHP_MINIT_FUNCTION()
1953 spl_handler_ArrayObject.unset_dimension = spl_array_unset_dimension; in PHP_MINIT_FUNCTION()
1954 spl_handler_ArrayObject.has_dimension = spl_array_has_dimension; in PHP_MINIT_FUNCTION()
1955 spl_handler_ArrayObject.count_elements = spl_array_object_count_elements; in PHP_MINIT_FUNCTION()
1957 spl_handler_ArrayObject.get_properties_for = spl_array_get_properties_for; in PHP_MINIT_FUNCTION()
1958 spl_handler_ArrayObject.get_gc = spl_array_get_gc; in PHP_MINIT_FUNCTION()
1959 spl_handler_ArrayObject.read_property = spl_array_read_property; in PHP_MINIT_FUNCTION()
1960 spl_handler_ArrayObject.write_property = spl_array_write_property; in PHP_MINIT_FUNCTION()
1961 spl_handler_ArrayObject.get_property_ptr_ptr = spl_array_get_property_ptr_ptr; in PHP_MINIT_FUNCTION()
1962 spl_handler_ArrayObject.has_property = spl_array_has_property; in PHP_MINIT_FUNCTION()
1963 spl_handler_ArrayObject.unset_property = spl_array_unset_property; in PHP_MINIT_FUNCTION()
1965 spl_handler_ArrayObject.compare = spl_array_compare_objects; in PHP_MINIT_FUNCTION()
1966 spl_handler_ArrayObject.free_obj = spl_array_object_free_storage; in PHP_MINIT_FUNCTION()
1973 memcpy(&spl_handler_ArrayIterator, &spl_handler_ArrayObject, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()