Lines Matching refs:properties_info

473 	if (&ce->properties_info) {  in _class_string()
475 count = zend_hash_num_elements(&ce->properties_info); in _class_string()
480 zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in _class_string()
482 while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop, &pos) == SUCCESS) { in _class_string()
488 zend_hash_move_forward_ex(&ce->properties_info, &pos); in _class_string()
498 zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in _class_string()
500 while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop, &pos) == SUCCESS) { in _class_string()
505 zend_hash_move_forward_ex(&ce->properties_info, &pos); in _class_string()
555 if (&ce->properties_info) { in _class_string()
556 count = zend_hash_num_elements(&ce->properties_info) - count_static_props - count_shadow_props; in _class_string()
562 zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in _class_string()
564 while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop, &pos) == SUCCESS) { in _class_string()
568 zend_hash_move_forward_ex(&ce->properties_info, &pos); in _class_string()
593 …if (!zend_hash_quick_exists(&ce->properties_info, prop_name, prop_name_size, zend_get_hash_value(p… in _class_string()
1369 …while (tmp_ce && zend_hash_find(&tmp_ce->properties_info, prop_name, strlen(prop_name) + 1, (void … in reflection_property_factory()
3432 zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in add_class_vars()
3433 …while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop_info, &pos) == SUCCESS)… in add_class_vars()
3434 zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos); in add_class_vars()
3435 zend_hash_move_forward_ex(&ce->properties_info, &pos); in add_class_vars()
3891 if (zend_hash_find(&ce->properties_info, name, name_len+1, (void **) &property_info) == SUCCESS) { in ZEND_METHOD()
3927 if (zend_hash_find(&ce->properties_info, name, name_len + 1, (void**) &property_info) == SUCCESS) { in ZEND_METHOD()
3971 …if (zend_hash_find(&ce->properties_info, name, name_len + 1, (void**) &property_info) == SUCCESS &… in ZEND_METHOD()
4053 …zend_hash_apply_with_arguments(&ce->properties_info TSRMLS_CC, (apply_func_args_t) _addproperty, 3… in ZEND_METHOD()
4887 …if (zend_hash_find(&ce->properties_info, name_str, name_len + 1, (void **) &property_info) == FAIL… in ZEND_METHOD()
4905 …while (tmp_ce && zend_hash_find(&tmp_ce->properties_info, name_str, name_len + 1, (void **) &tmp_i… in ZEND_METHOD()
5181 …while (tmp_ce && zend_hash_find(&tmp_ce->properties_info, prop_name, prop_name_len + 1, (void **) … in ZEND_METHOD()
6161 && zend_hash_exists(&Z_OBJCE_P(object)->properties_info, Z_STRVAL_P(member), Z_STRLEN_P(member)+1) in _reflection_write_property()