Home
last modified time | relevance | path

Searched refs:properties_info (Results 1 – 12 of 12) sorted by relevance

/PHP-5.5/Zend/
H A Dzend_objects.c192 for (zend_hash_internal_pointer_reset_ex(&old_object->ce->properties_info, &pos); in zend_objects_clone_members()
193 …zend_hash_get_current_data_ex(&old_object->ce->properties_info, (void**)&prop_info, &pos) == SUCCE… in zend_objects_clone_members()
194 zend_hash_move_forward_ex(&old_object->ce->properties_info, &pos)) { in zend_objects_clone_members()
H A Dzend_object_handlers.c76 for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in rebuild_object_properties()
77 zend_hash_get_current_data_ex(&ce->properties_info, (void**)&prop_info, &pos) == SUCCESS; in rebuild_object_properties()
78 zend_hash_move_forward_ex(&ce->properties_info, &pos)) { in rebuild_object_properties()
88 for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in rebuild_object_properties()
89 zend_hash_get_current_data_ex(&ce->properties_info, (void**)&prop_info, &pos) == SUCCESS; in rebuild_object_properties()
90 zend_hash_move_forward_ex(&ce->properties_info, &pos)) { in rebuild_object_properties()
293 …if (zend_hash_quick_find(&ce->properties_info, Z_STRVAL_P(member), Z_STRLEN_P(member)+1, h, (void … in zend_get_property_info_quick()
323 …&& zend_hash_quick_find(&EG(scope)->properties_info, Z_STRVAL_P(member), Z_STRLEN_P(member)+1, h, … in zend_get_property_info_quick()
1255 …if (UNEXPECTED(zend_hash_quick_find(&ce->properties_info, property_name, property_name_len+1, hash… in zend_std_get_static_property()
H A Dzend_builtin_functions.c913 zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in add_class_vars()
914 …while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop_info, &pos) == SUCCESS)… in add_class_vars()
915 zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos); in add_class_vars()
916 zend_hash_move_forward_ex(&ce->properties_info, &pos); in add_class_vars()
1200 …if (zend_hash_quick_find(&ce->properties_info, property, property_len+1, h, (void **) &property_in… in ZEND_FUNCTION()
H A Dzend_opcode.c303 zend_hash_destroy(&ce->properties_info); in destroy_zend_class()
337 zend_hash_destroy(&ce->properties_info); in destroy_zend_class()
H A Dzend_API.c1066 for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in zval_update_class_constant()
1067 zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop_info, &pos) == SUCCESS; in zval_update_class_constant()
1068 zend_hash_move_forward_ex(&ce->properties_info, &pos)) { in zval_update_class_constant()
3424 …if (zend_hash_quick_find(&ce->properties_info, name, name_length + 1, h, (void**)&property_info_pt… in zend_declare_property_ex()
3428 zend_hash_quick_del(&ce->properties_info, name, name_length + 1, h); in zend_declare_property_ex()
3438 …if (zend_hash_quick_find(&ce->properties_info, name, name_length + 1, h, (void**)&property_info_pt… in zend_declare_property_ex()
3442 zend_hash_quick_del(&ce->properties_info, name, name_length + 1, h); in zend_declare_property_ex()
3508 …zend_hash_quick_update(&ce->properties_info, name, name_length+1, h, &property_info, sizeof(zend_p… in zend_declare_property_ex()
H A Dzend_compile.c3518 …if (zend_hash_quick_find(&ce->properties_info, hash_key->arKey, hash_key->nKeyLength, hash_key->h,… in do_inherit_property_access_check()
3707 for (zend_hash_internal_pointer_reset(&ce->properties_info); in zend_do_inheritance()
3708 zend_hash_get_current_data(&ce->properties_info, (void *) &property_info) == SUCCESS; in zend_do_inheritance()
3709 zend_hash_move_forward(&ce->properties_info)) { in zend_do_inheritance()
3719 …zend_hash_merge_ex(&ce->properties_info, &parent_ce->properties_info, (copy_ctor_func_t) (ce->type… in zend_do_inheritance()
4258 …if (zend_hash_quick_exists(&ce->traits[i]->properties_info, prop_name, prop_name_length+1, prop_ha… in find_first_definition()
4289 for (zend_hash_internal_pointer_reset(&ce->traits[i]->properties_info); in zend_do_traits_property_binding()
4290 zend_hash_get_current_data(&ce->traits[i]->properties_info, (void *) &property_info) == SUCCESS; in zend_do_traits_property_binding()
4291 zend_hash_move_forward(&ce->traits[i]->properties_info)) { in zend_do_traits_property_binding()
4308 …if (zend_hash_quick_find(&ce->properties_info, prop_name, prop_name_length+1, prop_hash, (void **)… in zend_do_traits_property_binding()
[all …]
H A Dzend.h485 HashTable properties_info; member
/PHP-5.5/ext/reflection/
H A Dphp_reflection.c454 if (&ce->properties_info) { in _class_string()
456 count = zend_hash_num_elements(&ce->properties_info); in _class_string()
461 zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in _class_string()
469 zend_hash_move_forward_ex(&ce->properties_info, &pos); in _class_string()
479 zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in _class_string()
486 zend_hash_move_forward_ex(&ce->properties_info, &pos); in _class_string()
536 if (&ce->properties_info) { in _class_string()
543 zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in _class_string()
549 zend_hash_move_forward_ex(&ce->properties_info, &pos); in _class_string()
3358 zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in add_class_vars()
[all …]
/PHP-5.5/ext/opcache/
H A Dzend_persist.c509 …zend_hash_persist(&ce->properties_info, (zend_persist_func_t) zend_persist_property_info, sizeof(z…
658 zend_hash_apply(&ce->properties_info, (apply_func_t) zend_update_property_info_ce TSRMLS_CC);
H A Dzend_persist_calc.c276 …ADD_SIZE(zend_hash_persist_calc(&ce->properties_info, (int (*)(void* TSRMLS_DC)) zend_persist_prop…
H A Dzend_accelerator_util_funcs.c687 zend_hash_clone_prop_info(&ce->properties_info, &old_ce->properties_info, old_ce, ce TSRMLS_CC);
H A DZendAccelerator.c413 q = ce->properties_info.pListHead; in accel_use_shm_interned_strings()

Completed in 91 milliseconds