Searched refs:existing_propinfo (Results 1 – 2 of 2) sorted by relevance
439 zend_property_info *existing_propinfo; in process_nested_data() local453 existing_propinfo = zend_hash_find_ptr(&Z_OBJCE_P(rval)->properties_info, unmangled); in process_nested_data()455 && (existing_propinfo != NULL) in process_nested_data()456 && (existing_propinfo->flags & ZEND_ACC_PPP_MASK)) { in process_nested_data()457 if (existing_propinfo->flags & ZEND_ACC_PROTECTED) { in process_nested_data()461 } else if (existing_propinfo->flags & ZEND_ACC_PRIVATE) { in process_nested_data()469 ZSTR_VAL(existing_propinfo->ce->name), ZSTR_LEN(existing_propinfo->ce->name), in process_nested_data()475 ZEND_ASSERT(existing_propinfo->flags & ZEND_ACC_PUBLIC); in process_nested_data()
443 zend_property_info *existing_propinfo;457 existing_propinfo = zend_hash_find_ptr(&Z_OBJCE_P(rval)->properties_info, unmangled);459 && (existing_propinfo != NULL)460 && (existing_propinfo->flags & ZEND_ACC_PPP_MASK)) {461 if (existing_propinfo->flags & ZEND_ACC_PROTECTED) {465 } else if (existing_propinfo->flags & ZEND_ACC_PRIVATE) {473 ZSTR_VAL(existing_propinfo->ce->name), ZSTR_LEN(existing_propinfo->ce->name),479 ZEND_ASSERT(existing_propinfo->flags & ZEND_ACC_PUBLIC);
Completed in 9 milliseconds