Lines Matching refs:spl_handler_SplFixedArray
35 zend_object_handlers spl_handler_SplFixedArray; variable
275 intern->std.handlers = &spl_handler_SplFixedArray; in spl_fixedarray_object_new_ex()
877 memcpy(&spl_handler_SplFixedArray, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
879 spl_handler_SplFixedArray.offset = XtOffsetOf(spl_fixedarray_object, std); in PHP_MINIT_FUNCTION()
880 spl_handler_SplFixedArray.clone_obj = spl_fixedarray_object_clone; in PHP_MINIT_FUNCTION()
881 spl_handler_SplFixedArray.read_dimension = spl_fixedarray_object_read_dimension; in PHP_MINIT_FUNCTION()
882 spl_handler_SplFixedArray.write_dimension = spl_fixedarray_object_write_dimension; in PHP_MINIT_FUNCTION()
883 spl_handler_SplFixedArray.unset_dimension = spl_fixedarray_object_unset_dimension; in PHP_MINIT_FUNCTION()
884 spl_handler_SplFixedArray.has_dimension = spl_fixedarray_object_has_dimension; in PHP_MINIT_FUNCTION()
885 spl_handler_SplFixedArray.count_elements = spl_fixedarray_object_count_elements; in PHP_MINIT_FUNCTION()
886 spl_handler_SplFixedArray.get_properties = spl_fixedarray_object_get_properties; in PHP_MINIT_FUNCTION()
887 spl_handler_SplFixedArray.get_gc = spl_fixedarray_object_get_gc; in PHP_MINIT_FUNCTION()
888 spl_handler_SplFixedArray.dtor_obj = zend_objects_destroy_object; in PHP_MINIT_FUNCTION()
889 spl_handler_SplFixedArray.free_obj = spl_fixedarray_object_free_storage; in PHP_MINIT_FUNCTION()