Home
last modified time | relevance | path

Searched refs:variable_ptr (Results 1 – 3 of 3) sorted by relevance

/PHP-5.3/Zend/
H A Dzend_execute.c417 Z_SET_REFCOUNT_P(variable_ptr, Z_REFCOUNT_P(variable_ptr) - 2); in zend_assign_to_variable_reference()
673 if (Z_TYPE_P(variable_ptr) == IS_OBJECT && Z_OBJ_HANDLER_P(variable_ptr, set)) { in zend_assign_to_variable()
675 return variable_ptr; in zend_assign_to_variable()
679 if (variable_ptr!=value) { in zend_assign_to_variable()
682 garbage = *variable_ptr; in zend_assign_to_variable()
683 *variable_ptr = *value; in zend_assign_to_variable()
690 return variable_ptr; in zend_assign_to_variable()
703 return variable_ptr; in zend_assign_to_variable()
710 efree(variable_ptr); in zend_assign_to_variable()
716 *variable_ptr = *value; in zend_assign_to_variable()
[all …]
H A Dzend_object_handlers.c421 zval **variable_ptr; in zend_std_write_property() local
437 …_info->name, property_info->name_length+1, property_info->h, (void **) &variable_ptr) == SUCCESS) { in zend_std_write_property()
439 if (*variable_ptr != value) { in zend_std_write_property()
442 if (PZVAL_IS_REF(*variable_ptr)) { in zend_std_write_property()
443 zval garbage = **variable_ptr; /* old value should be destroyed */ in zend_std_write_property()
446 Z_TYPE_PP(variable_ptr) = Z_TYPE_P(value); in zend_std_write_property()
447 (*variable_ptr)->value = value->value; in zend_std_write_property()
449 zval_copy_ctor(*variable_ptr); in zend_std_write_property()
455 zval *garbage = *variable_ptr; in zend_std_write_property()
462 *variable_ptr = value; in zend_std_write_property()
/PHP-5.3/ext/reflection/
H A Dphp_reflection.c3161 zval **variable_ptr, *value; in ZEND_METHOD() local
3173 if (!variable_ptr) { in ZEND_METHOD()
3179 is_ref = Z_ISREF_PP(variable_ptr); in ZEND_METHOD()
3180 zval_dtor(*variable_ptr); in ZEND_METHOD()
3181 **variable_ptr = *value; in ZEND_METHOD()
3182 zval_copy_ctor(*variable_ptr); in ZEND_METHOD()
4606 zval **variable_ptr; in ZEND_METHOD() local
4637 if (*variable_ptr == value) { in ZEND_METHOD()
4640 if (PZVAL_IS_REF(*variable_ptr)) { in ZEND_METHOD()
4641 zval_dtor(*variable_ptr); in ZEND_METHOD()
[all …]

Completed in 35 milliseconds