Lines Matching refs:property_info

3285 	zend_property_info *property_info;  in zend_fetch_static_property_address_ex()  local
3323 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex()
3336 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex()
3349 *prop_info = property_info; in zend_fetch_static_property_address_ex()
3352 && EXPECTED(!(property_info->ce->ce_flags & ZEND_ACC_TRAIT))) { in zend_fetch_static_property_address_ex()
3354 CACHE_PTR(cache_slot + sizeof(void *) * 2, property_info); in zend_fetch_static_property_address_ex()
3362 zend_property_info *property_info; in zend_fetch_static_property_address() local
3366 property_info = CACHED_PTR(cache_slot + sizeof(void *) * 2); in zend_fetch_static_property_address()
3370 && UNEXPECTED(ZEND_TYPE_IS_SET(property_info->type))) { in zend_fetch_static_property_address()
3372 ZSTR_VAL(property_info->ce->name), in zend_fetch_static_property_address()
3373 zend_get_unmangled_property_name(property_info->name)); in zend_fetch_static_property_address()
3378 …success = zend_fetch_static_property_address_ex(retval, &property_info, cache_slot, fetch_type OPL… in zend_fetch_static_property_address()
3384 if (flags && ZEND_TYPE_IS_SET(property_info->type)) { in zend_fetch_static_property_address()
3385 zend_handle_fetch_obj_flags(NULL, *retval, NULL, property_info, flags); in zend_fetch_static_property_address()
3389 *prop_info = property_info; in zend_fetch_static_property_address()