Lines Matching refs:spl_handler_ArrayObject

40 zend_object_handlers spl_handler_ArrayObject;  variable
192 if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayObject) { in spl_array_object_new_ex()
218 retval.handlers = &spl_handler_ArrayObject; in spl_array_object_new_ex()
1072 …if (Z_TYPE_PP(array) == IS_OBJECT && (Z_OBJ_HT_PP(array) == &spl_handler_ArrayObject || Z_OBJ_HT_P… in spl_array_set_array()
2021 memcpy(&spl_handler_ArrayObject, zend_get_std_object_handlers(), sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
2023 spl_handler_ArrayObject.clone_obj = spl_array_object_clone; in PHP_MINIT_FUNCTION()
2024 spl_handler_ArrayObject.read_dimension = spl_array_read_dimension; in PHP_MINIT_FUNCTION()
2025 spl_handler_ArrayObject.write_dimension = spl_array_write_dimension; in PHP_MINIT_FUNCTION()
2026 spl_handler_ArrayObject.unset_dimension = spl_array_unset_dimension; in PHP_MINIT_FUNCTION()
2027 spl_handler_ArrayObject.has_dimension = spl_array_has_dimension; in PHP_MINIT_FUNCTION()
2028 spl_handler_ArrayObject.count_elements = spl_array_object_count_elements; in PHP_MINIT_FUNCTION()
2030 spl_handler_ArrayObject.get_properties = spl_array_get_properties; in PHP_MINIT_FUNCTION()
2031 spl_handler_ArrayObject.get_debug_info = spl_array_get_debug_info; in PHP_MINIT_FUNCTION()
2032 spl_handler_ArrayObject.read_property = spl_array_read_property; in PHP_MINIT_FUNCTION()
2033 spl_handler_ArrayObject.write_property = spl_array_write_property; in PHP_MINIT_FUNCTION()
2034 spl_handler_ArrayObject.get_property_ptr_ptr = spl_array_get_property_ptr_ptr; in PHP_MINIT_FUNCTION()
2035 spl_handler_ArrayObject.has_property = spl_array_has_property; in PHP_MINIT_FUNCTION()
2036 spl_handler_ArrayObject.unset_property = spl_array_unset_property; in PHP_MINIT_FUNCTION()
2038 spl_handler_ArrayObject.compare_objects = spl_array_compare_objects; in PHP_MINIT_FUNCTION()
2048 memcpy(&spl_handler_ArrayIterator, &spl_handler_ArrayObject, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()