Searched refs:properties_info (Results 1 – 14 of 14) sorted by relevance
/PHP-7.1/Zend/ |
H A D | zend_inheritance.c | 677 zval *child = zend_hash_find(&ce->properties_info, key); in do_inherit_property() 724 _zend_hash_append_ptr(&ce->properties_info, key, child_info); in do_inherit_property() 924 ZEND_HASH_FOREACH_PTR(&ce->properties_info, property_info) { in zend_do_inheritance() 934 if (zend_hash_num_elements(&parent_ce->properties_info)) { in zend_do_inheritance() 935 zend_hash_extend(&ce->properties_info, in zend_do_inheritance() 936 zend_hash_num_elements(&ce->properties_info) + in zend_do_inheritance() 937 zend_hash_num_elements(&parent_ce->properties_info), 0); in zend_do_inheritance() 939 ZEND_HASH_FOREACH_STR_KEY_PTR(&parent_ce->properties_info, key, property_info) { in zend_do_inheritance() 1533 if (zend_hash_exists(&ce->traits[i]->properties_info, prop_name)) { in find_first_definition() 1562 ZEND_HASH_FOREACH_PTR(&ce->traits[i]->properties_info, property_info) { in zend_do_traits_property_binding() [all …]
|
H A D | zend_object_handlers.c | 84 ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop_info) { in rebuild_object_properties() 98 ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop_info) { in rebuild_object_properties() 339 if (UNEXPECTED(zend_hash_num_elements(&ce->properties_info) == 0)) { in zend_get_property_offset() 343 zv = zend_hash_find(&ce->properties_info, member); in zend_get_property_offset() 378 && (zv = zend_hash_find(&scope->properties_info, member)) != NULL in zend_get_property_offset() 420 if (UNEXPECTED(zend_hash_num_elements(&ce->properties_info) == 0)) { in zend_get_property_info() 424 zv = zend_hash_find(&ce->properties_info, member); in zend_get_property_info() 458 && (zv = zend_hash_find(&scope->properties_info, member)) != NULL in zend_get_property_info() 1386 zend_property_info *property_info = zend_hash_find_ptr(&ce->properties_info, property_name); in zend_std_get_static_property()
|
H A D | zend_opcode.c | 277 ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop_info) { in destroy_zend_class() 285 zend_hash_destroy(&ce->properties_info); in destroy_zend_class() 332 zend_hash_destroy(&ce->properties_info); in destroy_zend_class()
|
H A D | zend.h | 129 HashTable properties_info; member
|
H A D | zend_API.c | 1141 ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop_info) { in zend_update_class_constants() 3633 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL && in zend_declare_property_ex() 3637 zend_hash_del(&ce->properties_info, name); in zend_declare_property_ex() 3647 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL && in zend_declare_property_ex() 3651 zend_hash_del(&ce->properties_info, name); in zend_declare_property_ex() 3683 zend_hash_update_ptr(&ce->properties_info, name, property_info); in zend_declare_property_ex()
|
H A D | zend_builtin_functions.c | 1152 ZEND_HASH_FOREACH_STR_KEY_PTR(&ce->properties_info, key, prop_info) { in add_class_vars() 1456 if ((property_info = zend_hash_find_ptr(&ce->properties_info, property)) != NULL in ZEND_FUNCTION()
|
H A D | zend_compile.c | 1746 …zend_hash_init_ex(&ce->properties_info, 8, NULL, (persistent_hashes ? zend_destroy_property_info_i… in zend_initialize_class_data() 5692 if (zend_hash_exists(&ce->properties_info, name)) { in zend_compile_prop_decl()
|
/PHP-7.1/ext/reflection/ |
H A D | php_reflection.c | 489 count = zend_hash_num_elements(&ce->properties_info); in _class_string() 493 ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop) { in _class_string() 507 ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop) { in _class_string() 549 count = zend_hash_num_elements(&ce->properties_info) - count_static_props - count_shadow_props; in _class_string() 554 ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop) { in _class_string() 573 if (!zend_hash_exists(&ce->properties_info, prop_name)) { in _class_string() 3932 ZEND_HASH_FOREACH_STR_KEY_PTR(&ce->properties_info, key, prop_info) { in add_class_vars() 4403 if ((property_info = zend_hash_find_ptr(&ce->properties_info, name)) != NULL) { in ZEND_METHOD() 4439 if ((property_info = zend_hash_find_ptr(&ce->properties_info, name)) != NULL) { in ZEND_METHOD() 5474 …while (tmp_ce && (tmp_info = zend_hash_str_find_ptr(&tmp_ce->properties_info, name_str, name_len))… in ZEND_METHOD() [all …]
|
/PHP-7.1/ext/opcache/ |
H A D | zend_persist_calc.c | 345 zend_hash_persist_calc(&ce->properties_info, zend_persist_property_info_calc); in zend_persist_class_entry_calc()
|
H A D | zend_accelerator_util_funcs.c | 377 zend_hash_clone_prop_info(&ce->properties_info, &old_ce->properties_info, old_ce); in zend_class_copy_ctor()
|
H A D | zend_file_cache.c | 605 …zend_file_cache_serialize_hash(&ce->properties_info, script, info, buf, zend_file_cache_serialize_… in zend_file_cache_serialize_class() 1221 zend_file_cache_unserialize_hash(&ce->properties_info, in zend_file_cache_unserialize_class()
|
H A D | zend_persist.c | 719 zend_hash_persist(&ce->properties_info, zend_persist_property_info); in zend_persist_class_entry()
|
H A D | ZendAccelerator.c | 563 for (j = 0; j < ce->properties_info.nNumUsed; j++) { in accel_use_shm_interned_strings() 566 q = ce->properties_info.arData + j; in accel_use_shm_interned_strings()
|
/PHP-7.1/ |
H A D | .gdbinit | 220 set $ht = &$zobj->ce->properties_info
|
Completed in 108 milliseconds