Lines Matching refs:class_type

210 static zend_object *spl_fixedarray_object_new_ex(zend_class_entry *class_type, zval *orig, int clon…  in spl_fixedarray_object_new_ex()  argument
213 zend_class_entry *parent = class_type; in spl_fixedarray_object_new_ex()
219 zend_object_std_init(&intern->std, class_type); in spl_fixedarray_object_new_ex()
220 object_properties_init(&intern->std, class_type); in spl_fixedarray_object_new_ex()
246 funcs_ptr = class_type->iterator_funcs_ptr; in spl_fixedarray_object_new_ex()
248 …funcs_ptr->zf_rewind = zend_hash_str_find_ptr(&class_type->function_table, "rewind", sizeof("rewin… in spl_fixedarray_object_new_ex()
249 …funcs_ptr->zf_valid = zend_hash_str_find_ptr(&class_type->function_table, "valid", sizeof("valid")… in spl_fixedarray_object_new_ex()
250 funcs_ptr->zf_key = zend_hash_str_find_ptr(&class_type->function_table, "key", sizeof("key") - 1); in spl_fixedarray_object_new_ex()
251 …funcs_ptr->zf_current = zend_hash_str_find_ptr(&class_type->function_table, "current", sizeof("cur… in spl_fixedarray_object_new_ex()
252 …funcs_ptr->zf_next = zend_hash_str_find_ptr(&class_type->function_table, "next", sizeof("next") - … in spl_fixedarray_object_new_ex()
271 …intern->fptr_offset_get = zend_hash_str_find_ptr(&class_type->function_table, "offsetget", sizeof(… in spl_fixedarray_object_new_ex()
275 …intern->fptr_offset_set = zend_hash_str_find_ptr(&class_type->function_table, "offsetset", sizeof(… in spl_fixedarray_object_new_ex()
279 …intern->fptr_offset_has = zend_hash_str_find_ptr(&class_type->function_table, "offsetexists", size… in spl_fixedarray_object_new_ex()
283 …intern->fptr_offset_del = zend_hash_str_find_ptr(&class_type->function_table, "offsetunset", sizeo… in spl_fixedarray_object_new_ex()
287 …intern->fptr_count = zend_hash_str_find_ptr(&class_type->function_table, "count", sizeof("count") … in spl_fixedarray_object_new_ex()
297 static zend_object *spl_fixedarray_new(zend_class_entry *class_type) /* {{{ */ in spl_fixedarray_new() argument
299 return spl_fixedarray_object_new_ex(class_type, NULL, 0); in spl_fixedarray_new()