Lines Matching refs:property_info

3538 	zend_property_info *property_info;  in zend_fetch_static_property_address_ex()  local
3576 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex()
3589 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex()
3600 *prop_info = property_info; in zend_fetch_static_property_address_ex()
3603 && EXPECTED(!(property_info->ce->ce_flags & ZEND_ACC_TRAIT))) { in zend_fetch_static_property_address_ex()
3605 CACHE_PTR(cache_slot + sizeof(void *) * 2, property_info); in zend_fetch_static_property_address_ex()
3613 zend_property_info *property_info; in zend_fetch_static_property_address() local
3622 property_info = CACHED_PTR(cache_slot + sizeof(void *) * 2); in zend_fetch_static_property_address()
3626 && ZEND_TYPE_IS_SET(property_info->type)) { in zend_fetch_static_property_address()
3628 ZSTR_VAL(property_info->ce->name), in zend_fetch_static_property_address()
3629 zend_get_unmangled_property_name(property_info->name)); in zend_fetch_static_property_address()
3634 …success = zend_fetch_static_property_address_ex(retval, &property_info, cache_slot, fetch_type OPL… in zend_fetch_static_property_address()
3641 if (flags && ZEND_TYPE_IS_SET(property_info->type)) { in zend_fetch_static_property_address()
3642 zend_handle_fetch_obj_flags(NULL, *retval, NULL, property_info, flags); in zend_fetch_static_property_address()
3646 *prop_info = property_info; in zend_fetch_static_property_address()