Lines Matching refs:property_info

3363 	zend_property_info *property_info;  in zend_fetch_static_property_address_ex()  local
3401 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex()
3414 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex()
3425 *prop_info = property_info; in zend_fetch_static_property_address_ex()
3428 && EXPECTED(!(property_info->ce->ce_flags & ZEND_ACC_TRAIT))) { in zend_fetch_static_property_address_ex()
3430 CACHE_PTR(cache_slot + sizeof(void *) * 2, property_info); in zend_fetch_static_property_address_ex()
3438 zend_property_info *property_info; in zend_fetch_static_property_address() local
3442 property_info = CACHED_PTR(cache_slot + sizeof(void *) * 2); in zend_fetch_static_property_address()
3446 && ZEND_TYPE_IS_SET(property_info->type)) { in zend_fetch_static_property_address()
3448 ZSTR_VAL(property_info->ce->name), in zend_fetch_static_property_address()
3449 zend_get_unmangled_property_name(property_info->name)); in zend_fetch_static_property_address()
3454 …success = zend_fetch_static_property_address_ex(retval, &property_info, cache_slot, fetch_type OPL… in zend_fetch_static_property_address()
3461 if (flags && ZEND_TYPE_IS_SET(property_info->type)) { in zend_fetch_static_property_address()
3462 zend_handle_fetch_obj_flags(NULL, *retval, NULL, property_info, flags); in zend_fetch_static_property_address()
3466 *prop_info = property_info; in zend_fetch_static_property_address()