Searched refs:properties_info_table (Results 1 – 15 of 15) sorted by relevance
/php-src/Zend/ |
H A D | zend_objects_API.h | 103 zend_property_info **table = obj->ce->properties_info_table; in zend_get_property_info_for_slot_self() 114 zend_property_info **table = obj->ce->properties_info_table; in zend_get_property_info_for_slot()
|
H A D | zend_lazy_objects.c | 274 if (EXPECTED(obj->ce->properties_info_table[i])) { in zend_object_make_lazy() 327 zend_property_info *prop_info = obj->ce->properties_info_table[i]; in zend_object_make_lazy() 415 zend_property_info *prop_info = ce->properties_info_table[i]; in zend_lazy_object_revert_init() 529 if (EXPECTED(Z_OBJ(retval)->ce->properties_info_table[i])) { in zend_lazy_object_init_proxy() 728 if (EXPECTED(ce->properties_info_table[i])) { in zend_lazy_object_clone() 806 zend_property_info **table = obj->ce->properties_info_table; in zend_lazy_object_get_property_info_for_slot()
|
H A D | zend.h | 170 struct _zend_property_info **properties_info_table; member
|
H A D | zend_opcode.c | 524 if (ce->properties_info_table) { in destroy_zend_class() 525 free(ce->properties_info_table); in destroy_zend_class()
|
H A D | zend_object_handlers.c | 77 prop_info = ce->properties_info_table[i]; in rebuild_object_properties_internal() 112 prop_info = ce->properties_info_table[i]; in zend_std_build_object_properties_array() 2119 info = zobj1->ce->properties_info_table[i]; in zend_std_compare_objects()
|
H A D | zend_API.c | 1616 prop_info = class_type->properties_info_table[i]; in zend_update_class_constants() 4599 ZEND_ASSERT(ce->properties_info_table != NULL); in zend_declare_typed_property() 4600 ce->properties_info_table[OBJ_PROP_TO_NUM(property_info->offset)] = property_info; in zend_declare_typed_property() 4608 …ce->properties_info_table = perealloc(ce->properties_info_table, sizeof(zend_property_info *) * ce… in zend_declare_typed_property() 4609 ce->properties_info_table[ce->default_properties_count - 1] = property_info; in zend_declare_typed_property()
|
H A D | zend_inheritance.c | 1639 ZEND_ASSERT(ce->properties_info_table == NULL); in zend_build_properties_info_table() 1642 ce->properties_info_table = table = zend_arena_alloc(&CG(arena), size); in zend_build_properties_info_table() 1644 ce->properties_info_table = table = pemalloc(size, 1); in zend_build_properties_info_table() 1651 zend_property_info **parent_table = ce->parent->properties_info_table; in zend_build_properties_info_table()
|
H A D | zend_compile.c | 2076 ce->properties_info_table = NULL; in zend_initialize_class_data()
|
/php-src/ext/opcache/ |
H A D | zend_persist.c | 989 if (ce->properties_info_table) { in zend_persist_class_entry() 994 ce->properties_info_table = zend_shared_memdup( in zend_persist_class_entry() 995 ce->properties_info_table, size); in zend_persist_class_entry() 998 if (ce->properties_info_table[i]) { in zend_persist_class_entry() 1000 ce->properties_info_table[i]); in zend_persist_class_entry() 1002 ce->properties_info_table[i] = prop_info; in zend_persist_class_entry()
|
H A D | zend_file_cache.c | 777 if (ce->properties_info_table) { 781 SERIALIZE_PTR(ce->properties_info_table); 782 table = ce->properties_info_table; 1636 if (ce->properties_info_table) { 1638 UNSERIALIZE_PTR(ce->properties_info_table); 1641 UNSERIALIZE_PTR(ce->properties_info_table[i]);
|
H A D | zend_persist_calc.c | 480 if (ce->properties_info_table) { in zend_persist_class_entry_calc()
|
H A D | ZendAccelerator.c | 3795 zend_property_info *prop = ce->properties_info_table[i];
|
/php-src/ext/json/ |
H A D | json_encoder.c | 166 prop_info = ce->properties_info_table[i]; in php_json_encode_array()
|
/php-src/ext/standard/ |
H A D | var.c | 1253 prop_info = ce->properties_info_table[i]; in php_var_serialize_intern() 1268 prop_info = ce->properties_info_table[i]; in php_var_serialize_intern()
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_ir.c | 14416 ref = ir_LOAD_A(ir_ADD_OFFSET(ref, offsetof(zend_class_entry, properties_info_table))); 14805 ref = ir_LOAD_A(ir_ADD_OFFSET(ref, offsetof(zend_class_entry, properties_info_table))); 15154 ref = ir_LOAD_A(ir_ADD_OFFSET(ref, offsetof(zend_class_entry, properties_info_table))); 15544 ref = ir_LOAD_A(ir_ADD_OFFSET(ref, offsetof(zend_class_entry, properties_info_table)));
|
Completed in 207 milliseconds