Lines Matching refs:rv

607 …ead_property(zend_object *zobj, zend_string *name, int type, void **cache_slot, zval *rv) /* {{{ */  in zend_std_read_property()  argument
630 ZVAL_COPY(rv, retval); in zend_std_read_property()
631 retval = rv; in zend_std_read_property()
725 zend_std_call_getter(zobj, name, rv); in zend_std_read_property()
728 if (Z_TYPE_P(rv) != IS_UNDEF) { in zend_std_read_property()
729 retval = rv; in zend_std_read_property()
730 if (!Z_ISREF_P(rv) && in zend_std_read_property()
732 if (UNEXPECTED(Z_TYPE_P(rv) != IS_OBJECT)) { in zend_std_read_property()
987 ZEND_API zval *zend_std_read_dimension(zend_object *object, zval *offset, int type, zval *rv) /* {{… in zend_std_read_dimension() argument
1004 zend_call_known_instance_method_with_1_params(funcs->zf_offsetexists, object, rv, &tmp_offset); in zend_std_read_dimension()
1005 if (UNEXPECTED(Z_ISUNDEF_P(rv))) { in zend_std_read_dimension()
1010 if (!i_zend_is_true(rv)) { in zend_std_read_dimension()
1013 zval_ptr_dtor(rv); in zend_std_read_dimension()
1016 zval_ptr_dtor(rv); in zend_std_read_dimension()
1019 zend_call_known_instance_method_with_1_params(funcs->zf_offsetget, object, rv, &tmp_offset); in zend_std_read_dimension()
1024 if (UNEXPECTED(Z_TYPE_P(rv) == IS_UNDEF)) { in zend_std_read_dimension()
1030 return rv; in zend_std_read_dimension()
1880 zval rv; in zend_std_has_property() local
1885 zend_std_call_issetter(zobj, name, &rv); in zend_std_has_property()
1886 result = zend_is_true(&rv); in zend_std_has_property()
1887 zval_ptr_dtor(&rv); in zend_std_has_property()
1891 zend_std_call_getter(zobj, name, &rv); in zend_std_has_property()
1893 result = i_zend_is_true(&rv); in zend_std_has_property()
1894 zval_ptr_dtor(&rv); in zend_std_has_property()