Home
last modified time | relevance | path

Searched refs:read_property (Results 1 – 22 of 22) sorted by relevance

/php-src/ext/standard/
H A Dincomplete_class.c114 php_incomplete_object_handlers.read_property = incomplete_class_get_property; in php_register_incomplete_class_handlers()
H A Darray.c4600 prop = Z_OBJ_HANDLER_P(data, read_property)(Z_OBJ_P(data), tmp_str, BP_VAR_R, cache_slot, rv);
/php-src/ext/opcache/jit/
H A Dzend_jit_helpers.c1849 retval = zobj->handlers->read_property(zobj, name, BP_VAR_R, cache_slot, result); in zend_jit_fetch_obj_r_slow()
1905 retval = zobj->handlers->read_property(zobj, name, BP_VAR_IS, cache_slot, result); in zend_jit_fetch_obj_is_slow()
1961 retval = zobj->handlers->read_property(zobj, name, BP_VAR_R, cache_slot, result); in zend_jit_fetch_obj_r_slow_ex()
2013 retval = zobj->handlers->read_property(zobj, name, BP_VAR_IS, cache_slot, result); in zend_jit_fetch_obj_is_slow_ex()
2139 retval = zobj->handlers->read_property(zobj, name, BP_VAR_W, cache_slot, result); in zend_jit_fetch_obj_w_slow()
2691 z = object->handlers->read_property(object, name, BP_VAR_R, cache_slot, &rv); in _zend_jit_assign_op_overloaded_property()
3000 z = zobj->handlers->read_property(zobj, name, BP_VAR_R, cache_slot, &rv); in zend_jit_pre_inc_obj_helper()
3070 z = zobj->handlers->read_property(zobj, name, BP_VAR_R, cache_slot, &rv); in zend_jit_pre_dec_obj_helper()
3135 z = zobj->handlers->read_property(zobj, name, BP_VAR_R, cache_slot, &rv); in zend_jit_post_inc_obj_helper()
3196 z = zobj->handlers->read_property(zobj, name, BP_VAR_R, cache_slot, &rv); in zend_jit_post_dec_obj_helper()
/php-src/ext/xsl/
H A Dphp_xsl.c275 xsl_object_handlers.read_property = xsl_objects_read_property; in PHP_MINIT_FUNCTION()
/php-src/Zend/
H A Dzend_object_handlers.h212 zend_object_read_property_t read_property; /* required */ member
H A Dzend_object_handlers.c831 && ce->default_object_handlers->read_property == zend_std_read_property in zend_std_read_property()
1656 zval *retval = obj->handlers->read_property(obj, prop_name, BP_VAR_R, NULL, &rv); in ZEND_FUNCTION()
H A Dzend_execute.c2267 z =object->handlers->read_property(object, name, BP_VAR_R, cache_slot, &rv); in zend_post_incdec_overloaded_property()
2296 z = object->handlers->read_property(object, name, BP_VAR_R, cache_slot, &rv); in zend_pre_incdec_overloaded_property()
2328 z = object->handlers->read_property(object, name, BP_VAR_R, cache_slot, &rv); in zend_assign_op_overloaded_property()
3436 ptr = zobj->handlers->read_property(zobj, name, type, cache_slot, result); in zend_fetch_property_address()
H A Dzend_vm_execute.h6789 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_CONST_CONST_HANDLER()
9353 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_CONST_TMPVAR_HANDLER()
11835 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_CONST_CV_HANDLER()
16257 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_TMPVAR_CONST_HANDLER()
17750 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_TMPVAR_TMPVAR_HANDLER()
19157 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_TMPVAR_CV_HANDLER()
33792 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_UNUSED_CONST_INLINE_HANDLER()
35965 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_UNUSED_TMPVAR_HANDLER()
38611 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_UNUSED_CV_HANDLER()
42989 if (zobj->handlers->read_property != zend_std_read_property) { in ZEND_FETCH_OBJ_R_SPEC_CV_CONST_INLINE_HANDLER()
[all …]
H A Dzend_vm_def.h2165 if (zobj->handlers->read_property != zend_std_read_property) {
2169 …retval = zobj->handlers->read_property(zobj, name, BP_VAR_R, cache_slot, EX_VAR(opline->result.var…
2335 …retval = zobj->handlers->read_property(zobj, name, BP_VAR_IS, cache_slot, EX_VAR(opline->result.va…
H A Dzend_API.c5187 value = object->handlers->read_property(object, name, silent?BP_VAR_IS:BP_VAR_R, NULL, rv); in zend_read_property_ex()
/php-src/ext/mysqli/
H A Dmysqli.c481 mysqli_object_handlers.read_property = mysqli_read_property; in PHP_MINIT_FUNCTION()
/php-src/ext/xmlreader/
H A Dphp_xmlreader.c1343 xmlreader_object_handlers.read_property = xmlreader_read_property; in PHP_MINIT_FUNCTION()
/php-src/ext/bcmath/
H A Dbcmath.c1013 bcmath_number_obj_handlers.read_property = bcmath_number_read_property; in bcmath_number_register_class()
/php-src/ext/ffi/
H A Dffi.c5436 zend_ffi_handlers.read_property = zend_ffi_read_var;
5462 zend_ffi_cdata_handlers.read_property = zend_ffi_cdata_read_field;
5486 zend_ffi_cdata_value_handlers.read_property = zend_ffi_cdata_get;
5509 zend_ffi_cdata_free_handlers.read_property = zend_ffi_free_read_property;
5536 zend_ffi_ctype_handlers.read_property = zend_fake_read_property;
/php-src/ext/snmp/
H A Dsnmp.c2015 php_snmp_object_handlers.read_property = php_snmp_read_property; in PHP_MINIT_FUNCTION()
/php-src/ext/spl/
H A Dspl_array.c1892 spl_handler_ArrayObject.read_property = spl_array_read_property; in PHP_MINIT_FUNCTION()
/php-src/ext/pdo/
H A Dpdo_stmt.c2495 pdo_row_object_handlers.read_property = row_prop_read; in pdo_stmt_init()
/php-src/ext/zip/
H A Dphp_zip.c3153 zip_object_handlers.read_property = php_zip_read_property;
/php-src/ext/simplexml/
H A Dsimplexml.c2654 sxe_object_handlers.read_property = sxe_property_read; in PHP_MINIT_FUNCTION()
/php-src/ext/date/
H A Dphp_date.c1783 date_object_handlers_interval.read_property = date_interval_read_property; in date_register_classes()
1801 date_object_handlers_period.read_property = date_period_read_property; in date_register_classes()
/php-src/ext/dom/
H A Dphp_dom.c764 dom_object_handlers.read_property = dom_read_property; in PHP_MINIT_FUNCTION()
/php-src/Zend/Optimizer/
H A Dzend_inference.c3797 && ce->default_object_handlers->read_property == zend_std_read_property in _zend_update_type_info()

Completed in 344 milliseconds