Lines Matching refs:std

61 	zend_object            std;  member
77 return (spl_fixedarray_object*)((char*)(obj) - XtOffsetOf(spl_fixedarray_object, std)); in spl_fixed_array_from_obj()
209 zend_object_std_dtor(&intern->std); in spl_fixedarray_object_free_storage()
223 zend_object_std_init(&intern->std, class_type); in spl_fixedarray_object_new_ex()
224 object_properties_init(&intern->std, class_type); in spl_fixedarray_object_new_ex()
244 intern->std.handlers = &spl_handler_SplFixedArray; in spl_fixedarray_object_new_ex()
303 return &intern->std; in spl_fixedarray_object_new_ex()
363 …zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_has, "offsetexists", r… in spl_fixedarray_object_read_dimension()
384 …zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_get, "offsetGet", rv, … in spl_fixedarray_object_read_dimension()
440 …zend_call_method_with_2_params(object, intern->std.ce, &intern->fptr_offset_set, "offsetSet", NULL… in spl_fixedarray_object_write_dimension()
478 …zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_del, "offsetUnset", NU… in spl_fixedarray_object_unset_dimension()
528 …zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_has, "offsetExists", &… in spl_fixedarray_object_has_dimension()
549 zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_fixedarray_object_count_elements()
1113 spl_handler_SplFixedArray.offset = XtOffsetOf(spl_fixedarray_object, std); in PHP_MINIT_FUNCTION()