Searched refs:property_info_ptr (Results 1 – 2 of 2) sorted by relevance
4334 zend_property_info *property_info, *property_info_ptr; in zend_declare_typed_property() local4366 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL && in zend_declare_typed_property()4367 (property_info_ptr->flags & ZEND_ACC_STATIC) != 0) { in zend_declare_typed_property()4368 property_info->offset = property_info_ptr->offset; in zend_declare_typed_property()4370 if (property_info_ptr->doc_comment && property_info_ptr->ce == ce) { in zend_declare_typed_property()4371 zend_string_release(property_info_ptr->doc_comment); in zend_declare_typed_property()4387 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL && in zend_declare_typed_property()4388 (property_info_ptr->flags & ZEND_ACC_STATIC) == 0) { in zend_declare_typed_property()4389 property_info->offset = property_info_ptr->offset; in zend_declare_typed_property()4391 if (property_info_ptr->doc_comment && property_info_ptr->ce == ce) { in zend_declare_typed_property()[all …]
1584 …_entry *ce, zend_string *property_name, int type, zend_property_info **property_info_ptr) /* {{{ */ in zend_std_get_static_property_with_info() argument1589 *property_info_ptr = property_info; in zend_std_get_static_property_with_info()
Completed in 21 milliseconds