Lines Matching refs:spl_handler_ArrayObject
38 static zend_object_handlers spl_handler_ArrayObject; variable
956 if (Z_OBJ_HT_P(array) == &spl_handler_ArrayObject) { in spl_array_set_array()
1885 spl_ce_ArrayObject->default_object_handlers = &spl_handler_ArrayObject; in PHP_MINIT_FUNCTION()
1887 memcpy(&spl_handler_ArrayObject, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
1889 spl_handler_ArrayObject.offset = XtOffsetOf(spl_array_object, std); in PHP_MINIT_FUNCTION()
1891 spl_handler_ArrayObject.clone_obj = spl_array_object_clone; in PHP_MINIT_FUNCTION()
1892 spl_handler_ArrayObject.read_dimension = spl_array_read_dimension; in PHP_MINIT_FUNCTION()
1893 spl_handler_ArrayObject.write_dimension = spl_array_write_dimension; in PHP_MINIT_FUNCTION()
1894 spl_handler_ArrayObject.unset_dimension = spl_array_unset_dimension; in PHP_MINIT_FUNCTION()
1895 spl_handler_ArrayObject.has_dimension = spl_array_has_dimension; in PHP_MINIT_FUNCTION()
1896 spl_handler_ArrayObject.count_elements = spl_array_object_count_elements; in PHP_MINIT_FUNCTION()
1898 spl_handler_ArrayObject.get_properties_for = spl_array_get_properties_for; in PHP_MINIT_FUNCTION()
1899 spl_handler_ArrayObject.get_gc = spl_array_get_gc; in PHP_MINIT_FUNCTION()
1900 spl_handler_ArrayObject.read_property = spl_array_read_property; in PHP_MINIT_FUNCTION()
1901 spl_handler_ArrayObject.write_property = spl_array_write_property; in PHP_MINIT_FUNCTION()
1902 spl_handler_ArrayObject.get_property_ptr_ptr = spl_array_get_property_ptr_ptr; in PHP_MINIT_FUNCTION()
1903 spl_handler_ArrayObject.has_property = spl_array_has_property; in PHP_MINIT_FUNCTION()
1904 spl_handler_ArrayObject.unset_property = spl_array_unset_property; in PHP_MINIT_FUNCTION()
1906 spl_handler_ArrayObject.compare = spl_array_compare_objects; in PHP_MINIT_FUNCTION()
1907 spl_handler_ArrayObject.free_obj = spl_array_object_free_storage; in PHP_MINIT_FUNCTION()
1911 spl_ce_ArrayIterator->default_object_handlers = &spl_handler_ArrayObject; in PHP_MINIT_FUNCTION()