Searched refs:property_info_ptr (Results 1 – 2 of 2) sorted by relevance
4499 zend_property_info *property_info, *property_info_ptr; in zend_declare_typed_property() local4568 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL) { in zend_declare_typed_property()4569 ZEND_ASSERT(property_info_ptr->flags & ZEND_ACC_STATIC); in zend_declare_typed_property()4570 property_info->offset = property_info_ptr->offset; in zend_declare_typed_property()4572 if (property_info_ptr->doc_comment && property_info_ptr->ce == ce) { in zend_declare_typed_property()4573 zend_string_release(property_info_ptr->doc_comment); in zend_declare_typed_property()4589 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL) { in zend_declare_typed_property()4590 ZEND_ASSERT(!(property_info_ptr->flags & ZEND_ACC_STATIC)); in zend_declare_typed_property()4591 property_info->offset = property_info_ptr->offset; in zend_declare_typed_property()4593 if (property_info_ptr->doc_comment && property_info_ptr->ce == ce) { in zend_declare_typed_property()[all …]
1935 …_entry *ce, zend_string *property_name, int type, zend_property_info **property_info_ptr) /* {{{ */ in zend_std_get_static_property_with_info() argument1939 *property_info_ptr = property_info; in zend_std_get_static_property_with_info()
Completed in 30 milliseconds