property         3425 Zend/zend_API.c ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type, const char *doc_comment, int doc_comment_len TSRMLS_DC) /* {{{ */
property         3444 Zend/zend_API.c 		ce->default_static_members_table[property_info.offset] = property;
property         3458 Zend/zend_API.c 		ce->default_properties_table[property_info.offset] = property;
property         3461 Zend/zend_API.c 		switch(Z_TYPE_P(property)) {
property         3524 Zend/zend_API.c ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC) /* {{{ */
property         3526 Zend/zend_API.c 	return zend_declare_property_ex(ce, name, name_length, property, access_type, NULL, 0 TSRMLS_CC);
property         3532 Zend/zend_API.c 	zval *property;
property         3535 Zend/zend_API.c 		ALLOC_PERMANENT_ZVAL(property);
property         3537 Zend/zend_API.c 		ALLOC_ZVAL(property);
property         3539 Zend/zend_API.c 	INIT_ZVAL(*property);
property         3540 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
property         3546 Zend/zend_API.c 	zval *property;
property         3549 Zend/zend_API.c 		ALLOC_PERMANENT_ZVAL(property);
property         3551 Zend/zend_API.c 		ALLOC_ZVAL(property);
property         3553 Zend/zend_API.c 	INIT_PZVAL(property);
property         3554 Zend/zend_API.c 	ZVAL_BOOL(property, value);
property         3555 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
property         3561 Zend/zend_API.c 	zval *property;
property         3564 Zend/zend_API.c 		ALLOC_PERMANENT_ZVAL(property);
property         3566 Zend/zend_API.c 		ALLOC_ZVAL(property);
property         3568 Zend/zend_API.c 	INIT_PZVAL(property);
property         3569 Zend/zend_API.c 	ZVAL_LONG(property, value);
property         3570 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
property         3576 Zend/zend_API.c 	zval *property;
property         3579 Zend/zend_API.c 		ALLOC_PERMANENT_ZVAL(property);
property         3581 Zend/zend_API.c 		ALLOC_ZVAL(property);
property         3583 Zend/zend_API.c 	INIT_PZVAL(property);
property         3584 Zend/zend_API.c 	ZVAL_DOUBLE(property, value);
property         3585 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
property         3591 Zend/zend_API.c 	zval *property;
property         3595 Zend/zend_API.c 		ALLOC_PERMANENT_ZVAL(property);
property         3596 Zend/zend_API.c 		ZVAL_STRINGL(property, zend_strndup(value, len), len, 0);
property         3598 Zend/zend_API.c 		ALLOC_ZVAL(property);
property         3599 Zend/zend_API.c 		ZVAL_STRINGL(property, value, len, 1);
property         3601 Zend/zend_API.c 	INIT_PZVAL(property);
property         3602 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
property         3608 Zend/zend_API.c 	zval *property;
property         3611 Zend/zend_API.c 		ALLOC_PERMANENT_ZVAL(property);
property         3612 Zend/zend_API.c 		ZVAL_STRINGL(property, zend_strndup(value, value_len), value_len, 0);
property         3614 Zend/zend_API.c 		ALLOC_ZVAL(property);
property         3615 Zend/zend_API.c 		ZVAL_STRINGL(property, value, value_len, 1);
property         3617 Zend/zend_API.c 	INIT_PZVAL(property);
property         3618 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
property         3712 Zend/zend_API.c 	zval *property;
property         3725 Zend/zend_API.c 	MAKE_STD_ZVAL(property);
property         3726 Zend/zend_API.c 	ZVAL_STRINGL(property, name, name_length, 1);
property         3727 Zend/zend_API.c 	Z_OBJ_HT_P(object)->write_property(object, property, value, 0 TSRMLS_CC);
property         3728 Zend/zend_API.c 	zval_ptr_dtor(&property);
property         3808 Zend/zend_API.c 	zval **property;
property         3812 Zend/zend_API.c 	property = zend_std_get_static_property(scope, name, name_length, 0, NULL TSRMLS_CC);
property         3814 Zend/zend_API.c 	if (!property) {
property         3817 Zend/zend_API.c 		if (*property != value) {
property         3818 Zend/zend_API.c 			if (PZVAL_IS_REF(*property)) {
property         3819 Zend/zend_API.c 				zval_dtor(*property);
property         3820 Zend/zend_API.c 				Z_TYPE_PP(property) = Z_TYPE_P(value);
property         3821 Zend/zend_API.c 				(*property)->value = value->value;
property         3823 Zend/zend_API.c 					zval_copy_ctor(*property);
property         3828 Zend/zend_API.c 				zval *garbage = *property;
property         3834 Zend/zend_API.c 				*property = value;
property         3917 Zend/zend_API.c 	zval *property, *value;
property         3930 Zend/zend_API.c 	MAKE_STD_ZVAL(property);
property         3931 Zend/zend_API.c 	ZVAL_STRINGL(property, name, name_length, 1);
property         3932 Zend/zend_API.c 	value = Z_OBJ_HT_P(object)->read_property(object, property, silent?BP_VAR_IS:BP_VAR_R, 0 TSRMLS_CC);
property         3933 Zend/zend_API.c 	zval_ptr_dtor(&property);
property         3942 Zend/zend_API.c 	zval **property;
property         3946 Zend/zend_API.c 	property = zend_std_get_static_property(scope, name, name_length, silent, NULL TSRMLS_CC);
property         3949 Zend/zend_API.c 	return property?*property:NULL;
property          308 Zend/zend_API.h ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC);
property          309 Zend/zend_API.h ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type, const char *doc_comment, int doc_comment_len TSRMLS_DC);
property         1182 Zend/zend_builtin_functions.c 	char *property;
property         1189 Zend/zend_builtin_functions.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zs", &object, &property, &property_len) == FAILURE) {
property         1209 Zend/zend_builtin_functions.c 	h = zend_get_hash_value(property, property_len+1);
property         1210 Zend/zend_builtin_functions.c 	if (zend_hash_quick_find(&ce->properties_info, property, property_len+1, h, (void **) &property_info) == SUCCESS
property         1215 Zend/zend_builtin_functions.c 	ZVAL_STRINGL(&property_z, property, property_len, 0);
property         5441 Zend/zend_compile.c 	zval *property;
property         5462 Zend/zend_compile.c 	ALLOC_ZVAL(property);
property         5465 Zend/zend_compile.c 		*property = value->u.constant;
property         5467 Zend/zend_compile.c 		INIT_PZVAL(property);
property         5468 Zend/zend_compile.c 		Z_TYPE_P(property) = IS_NULL;
property         5478 Zend/zend_compile.c 	zend_declare_property_ex(CG(active_class_entry), zend_new_interned_string(Z_STRVAL(var_name->u.constant), Z_STRLEN(var_name->u.constant) + 1, 0 TSRMLS_CC), Z_STRLEN(var_name->u.constant), property, access_type, comment, comment_len TSRMLS_CC);
property         5485 Zend/zend_compile.c 	zval *property;
property         5494 Zend/zend_compile.c 	ALLOC_ZVAL(property);
property         5495 Zend/zend_compile.c 	*property = value->u.constant;
property         5499 Zend/zend_compile.c 	if (zend_hash_quick_add(&CG(active_class_entry)->constants_table, cname, Z_STRLEN(var_name->u.constant)+1, hash, &property, sizeof(zval *), NULL) == FAILURE) {
property         5500 Zend/zend_compile.c 		FREE_ZVAL(property);
property         5513 Zend/zend_compile.c void zend_do_fetch_property(znode *result, znode *object, const znode *property TSRMLS_DC) /* {{{ */
property         5531 Zend/zend_compile.c 			SET_NODE(opline_ptr->op2, property);
property         5577 Zend/zend_compile.c 	SET_NODE(opline.op2, property);
property          584 Zend/zend_compile.h void zend_do_fetch_property(znode *result, znode *object, const znode *property TSRMLS_DC);
property          318 Zend/zend_objects_API.c 	zval *property;
property          330 Zend/zend_objects_API.c 	zval_ptr_dtor(&object->property);
property          338 Zend/zend_objects_API.c 	(*object_clone)->property = object->property;
property          339 Zend/zend_objects_API.c 	zval_add_ref(&(*object_clone)->property);
property          350 Zend/zend_objects_API.c 	ALLOC_ZVAL(pobj->property);
property          351 Zend/zend_objects_API.c 	INIT_PZVAL_COPY(pobj->property, member);
property          352 Zend/zend_objects_API.c 	zval_copy_ctor(pobj->property);
property          362 Zend/zend_objects_API.c ZEND_API void zend_object_proxy_set(zval **property, zval *value TSRMLS_DC)
property          364 Zend/zend_objects_API.c 	zend_proxy_object *probj = zend_object_store_get_object(*property TSRMLS_CC);
property          367 Zend/zend_objects_API.c 		Z_OBJ_HT_P(probj->object)->write_property(probj->object, probj->property, value, 0 TSRMLS_CC);
property          373 Zend/zend_objects_API.c ZEND_API zval* zend_object_proxy_get(zval *property TSRMLS_DC)
property          375 Zend/zend_objects_API.c 	zend_proxy_object *probj = zend_object_store_get_object(property TSRMLS_CC);
property          378 Zend/zend_objects_API.c 		return Z_OBJ_HT_P(probj->object)->read_property(probj->object, probj->property, BP_VAR_R, 0 TSRMLS_CC);
property          336 Zend/zend_vm_def.h 	zval *property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property          359 Zend/zend_vm_def.h 			MAKE_REAL_ZVAL_PTR(property);
property          365 Zend/zend_vm_def.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property          384 Zend/zend_vm_def.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property          388 Zend/zend_vm_def.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property          406 Zend/zend_vm_def.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property          408 Zend/zend_vm_def.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property          426 Zend/zend_vm_def.h 			zval_ptr_dtor(&property);
property          591 Zend/zend_vm_def.h 	zval *property;
property          597 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property          622 Zend/zend_vm_def.h 		MAKE_REAL_ZVAL_PTR(property);
property          626 Zend/zend_vm_def.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property          644 Zend/zend_vm_def.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property          660 Zend/zend_vm_def.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property          674 Zend/zend_vm_def.h 		zval_ptr_dtor(&property);
property          699 Zend/zend_vm_def.h 	zval *property;
property          705 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property          727 Zend/zend_vm_def.h 		MAKE_REAL_ZVAL_PTR(property);
property          731 Zend/zend_vm_def.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property          749 Zend/zend_vm_def.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property          767 Zend/zend_vm_def.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property          778 Zend/zend_vm_def.h 		zval_ptr_dtor(&property);
property         1381 Zend/zend_vm_def.h 	zval *property;
property         1385 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         1388 Zend/zend_vm_def.h 		MAKE_REAL_ZVAL_PTR(property);
property         1395 Zend/zend_vm_def.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         1397 Zend/zend_vm_def.h 		zval_ptr_dtor(&property);
property         1425 Zend/zend_vm_def.h 	zval *property;
property         1429 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         1433 Zend/zend_vm_def.h 		MAKE_REAL_ZVAL_PTR(property);
property         1438 Zend/zend_vm_def.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         1440 Zend/zend_vm_def.h 		zval_ptr_dtor(&property);
property         1501 Zend/zend_vm_def.h 		zval *property;
property         1505 Zend/zend_vm_def.h 		property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         1509 Zend/zend_vm_def.h 			MAKE_REAL_ZVAL_PTR(property);
property         1514 Zend/zend_vm_def.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         1516 Zend/zend_vm_def.h 			zval_ptr_dtor(&property);
property         1536 Zend/zend_vm_def.h 	zval *property;
property         1540 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         1548 Zend/zend_vm_def.h 		MAKE_REAL_ZVAL_PTR(property);
property         1553 Zend/zend_vm_def.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         1555 Zend/zend_vm_def.h 		zval_ptr_dtor(&property);
property         14512 Zend/zend_vm_execute.h 	zval *property = opline->op2.zv;
property         14535 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         14541 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         14560 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         14564 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         14582 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         14584 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         14602 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         14766 Zend/zend_vm_execute.h 	zval *property;
property         14772 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         14797 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         14801 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         14819 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         14835 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         14849 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         14874 Zend/zend_vm_execute.h 	zval *property;
property         14880 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         14902 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         14906 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         14924 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         14942 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         14953 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         15348 Zend/zend_vm_execute.h 	zval *property;
property         15352 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         15355 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         15362 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         15364 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         15392 Zend/zend_vm_execute.h 	zval *property;
property         15396 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         15400 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         15405 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         15407 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         15468 Zend/zend_vm_execute.h 		zval *property;
property         15472 Zend/zend_vm_execute.h 		property = opline->op2.zv;
property         15476 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         15481 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         15483 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         15503 Zend/zend_vm_execute.h 	zval *property;
property         15507 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         15515 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         15520 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         15522 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         17025 Zend/zend_vm_execute.h 	zval *property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         17048 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         17054 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         17073 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         17077 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         17095 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         17097 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         17115 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         17280 Zend/zend_vm_execute.h 	zval *property;
property         17286 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         17311 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         17315 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         17333 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         17349 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         17363 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         17388 Zend/zend_vm_execute.h 	zval *property;
property         17394 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         17416 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         17420 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         17438 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         17456 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         17467 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         17700 Zend/zend_vm_execute.h 	zval *property;
property         17704 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         17707 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         17714 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         17716 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         17744 Zend/zend_vm_execute.h 	zval *property;
property         17748 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         17752 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         17757 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         17759 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         17820 Zend/zend_vm_execute.h 		zval *property;
property         17824 Zend/zend_vm_execute.h 		property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         17828 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         17833 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         17835 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         17855 Zend/zend_vm_execute.h 	zval *property;
property         17859 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         17867 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         17872 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         17874 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         19125 Zend/zend_vm_execute.h 	zval *property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         19148 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         19154 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         19173 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         19177 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         19195 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         19197 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         19215 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         19380 Zend/zend_vm_execute.h 	zval *property;
property         19386 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         19411 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         19415 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         19433 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         19449 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         19463 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         19488 Zend/zend_vm_execute.h 	zval *property;
property         19494 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         19516 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         19520 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         19538 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         19556 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         19567 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         19962 Zend/zend_vm_execute.h 	zval *property;
property         19966 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         19969 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         19976 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         19978 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         20006 Zend/zend_vm_execute.h 	zval *property;
property         20010 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         20014 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         20019 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         20021 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         20082 Zend/zend_vm_execute.h 		zval *property;
property         20086 Zend/zend_vm_execute.h 		property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         20090 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         20095 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         20097 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         20117 Zend/zend_vm_execute.h 	zval *property;
property         20121 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         20129 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         20134 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         20136 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         21331 Zend/zend_vm_execute.h 	zval *property = NULL;
property         21354 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         21360 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_UNUSED == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         21379 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_UNUSED == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         21383 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         21401 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_UNUSED == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         21403 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         21421 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         22761 Zend/zend_vm_execute.h 	zval *property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         22784 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         22790 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         22809 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         22813 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         22831 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         22833 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         22851 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         23015 Zend/zend_vm_execute.h 	zval *property;
property         23021 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         23046 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         23050 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         23068 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         23084 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         23098 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         23123 Zend/zend_vm_execute.h 	zval *property;
property         23129 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         23151 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         23155 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         23173 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         23191 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         23202 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         23435 Zend/zend_vm_execute.h 	zval *property;
property         23439 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         23442 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         23449 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         23451 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         23479 Zend/zend_vm_execute.h 	zval *property;
property         23483 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         23487 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         23492 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         23494 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         23555 Zend/zend_vm_execute.h 		zval *property;
property         23559 Zend/zend_vm_execute.h 		property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         23563 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         23568 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         23570 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         23590 Zend/zend_vm_execute.h 	zval *property;
property         23594 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         23602 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         23607 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         23609 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         24723 Zend/zend_vm_execute.h 	zval *property = opline->op2.zv;
property         24746 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         24752 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         24771 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         24775 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         24793 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         24795 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         24813 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         24976 Zend/zend_vm_execute.h 	zval *property;
property         24982 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         25007 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         25011 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         25029 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         25045 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         25059 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         25084 Zend/zend_vm_execute.h 	zval *property;
property         25090 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         25112 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         25116 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         25134 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         25152 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         25163 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         25233 Zend/zend_vm_execute.h 	zval *property;
property         25237 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         25240 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         25247 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         25249 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         25276 Zend/zend_vm_execute.h 	zval *property;
property         25280 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         25284 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         25289 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         25291 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         25351 Zend/zend_vm_execute.h 		zval *property;
property         25355 Zend/zend_vm_execute.h 		property = opline->op2.zv;
property         25359 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         25364 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         25366 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         25386 Zend/zend_vm_execute.h 	zval *property;
property         25390 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         25398 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         25403 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         25405 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         26136 Zend/zend_vm_execute.h 	zval *property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         26159 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         26165 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         26184 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         26188 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         26206 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         26208 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         26226 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         26390 Zend/zend_vm_execute.h 	zval *property;
property         26396 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         26421 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         26425 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         26443 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         26459 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         26473 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         26498 Zend/zend_vm_execute.h 	zval *property;
property         26504 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         26526 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         26530 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         26548 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         26566 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         26577 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         26647 Zend/zend_vm_execute.h 	zval *property;
property         26651 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         26654 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         26661 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         26663 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         26690 Zend/zend_vm_execute.h 	zval *property;
property         26694 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         26698 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         26703 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         26705 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         26765 Zend/zend_vm_execute.h 		zval *property;
property         26769 Zend/zend_vm_execute.h 		property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         26773 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         26778 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         26780 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         26800 Zend/zend_vm_execute.h 	zval *property;
property         26804 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         26812 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         26817 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         26819 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         27458 Zend/zend_vm_execute.h 	zval *property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         27481 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         27487 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         27506 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         27510 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         27528 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         27530 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         27548 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         27712 Zend/zend_vm_execute.h 	zval *property;
property         27718 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         27743 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         27747 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         27765 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         27781 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         27795 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         27820 Zend/zend_vm_execute.h 	zval *property;
property         27826 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         27848 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         27852 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         27870 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         27888 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         27899 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         27969 Zend/zend_vm_execute.h 	zval *property;
property         27973 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         27976 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         27983 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         27985 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         28012 Zend/zend_vm_execute.h 	zval *property;
property         28016 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         28020 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         28025 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         28027 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         28087 Zend/zend_vm_execute.h 		zval *property;
property         28091 Zend/zend_vm_execute.h 		property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         28095 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         28100 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         28102 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         28122 Zend/zend_vm_execute.h 	zval *property;
property         28126 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         28134 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         28139 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         28141 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         28781 Zend/zend_vm_execute.h 	zval *property = NULL;
property         28804 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         28810 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_UNUSED == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         28829 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_UNUSED == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         28833 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         28851 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_UNUSED == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         28853 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         28871 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         29212 Zend/zend_vm_execute.h 	zval *property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         29235 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         29241 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         29260 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         29264 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         29282 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         29284 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         29302 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         29465 Zend/zend_vm_execute.h 	zval *property;
property         29471 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         29496 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         29500 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         29518 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         29534 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         29548 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         29573 Zend/zend_vm_execute.h 	zval *property;
property         29579 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         29601 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         29605 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         29623 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         29641 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         29652 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         29722 Zend/zend_vm_execute.h 	zval *property;
property         29726 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         29729 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         29736 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         29738 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         29765 Zend/zend_vm_execute.h 	zval *property;
property         29769 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         29773 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         29778 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         29780 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         29840 Zend/zend_vm_execute.h 		zval *property;
property         29844 Zend/zend_vm_execute.h 		property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         29848 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         29853 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         29855 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         29875 Zend/zend_vm_execute.h 	zval *property;
property         29879 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         29887 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         29892 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         29894 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         32047 Zend/zend_vm_execute.h 	zval *property = opline->op2.zv;
property         32070 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         32076 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         32095 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         32099 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         32117 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         32119 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         32137 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         32300 Zend/zend_vm_execute.h 	zval *property;
property         32306 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         32331 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         32335 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         32353 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         32369 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         32383 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         32408 Zend/zend_vm_execute.h 	zval *property;
property         32414 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         32436 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         32440 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         32458 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         32476 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         32487 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         32880 Zend/zend_vm_execute.h 	zval *property;
property         32884 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         32887 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         32894 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         32896 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         32923 Zend/zend_vm_execute.h 	zval *property;
property         32927 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         32931 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         32936 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         32938 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         32998 Zend/zend_vm_execute.h 		zval *property;
property         33002 Zend/zend_vm_execute.h 		property = opline->op2.zv;
property         33006 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         33011 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         33013 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         33033 Zend/zend_vm_execute.h 	zval *property;
property         33037 Zend/zend_vm_execute.h 	property = opline->op2.zv;
property         33045 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         33050 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         33052 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         34331 Zend/zend_vm_execute.h 	zval *property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         34354 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         34360 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         34379 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         34383 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         34401 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         34403 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         34421 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         34585 Zend/zend_vm_execute.h 	zval *property;
property         34591 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         34616 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         34620 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         34638 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         34654 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         34668 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         34693 Zend/zend_vm_execute.h 	zval *property;
property         34699 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         34721 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         34725 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         34743 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         34761 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         34772 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         35003 Zend/zend_vm_execute.h 	zval *property;
property         35007 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         35010 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         35017 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         35019 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         35046 Zend/zend_vm_execute.h 	zval *property;
property         35050 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         35054 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         35059 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         35061 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         35121 Zend/zend_vm_execute.h 		zval *property;
property         35125 Zend/zend_vm_execute.h 		property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         35129 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         35134 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         35136 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         35156 Zend/zend_vm_execute.h 	zval *property;
property         35160 Zend/zend_vm_execute.h 	property = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         35168 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         35173 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_TMP_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         35175 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         36294 Zend/zend_vm_execute.h 	zval *property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         36317 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         36323 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         36342 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         36346 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         36364 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         36366 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         36384 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         36548 Zend/zend_vm_execute.h 	zval *property;
property         36554 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         36579 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         36583 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         36601 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         36617 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         36631 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         36656 Zend/zend_vm_execute.h 	zval *property;
property         36662 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         36684 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         36688 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         36706 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         36724 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         36735 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         37128 Zend/zend_vm_execute.h 	zval *property;
property         37132 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         37135 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         37142 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         37144 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         37171 Zend/zend_vm_execute.h 	zval *property;
property         37175 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         37179 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         37184 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         37186 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         37246 Zend/zend_vm_execute.h 		zval *property;
property         37250 Zend/zend_vm_execute.h 		property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         37254 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         37259 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         37261 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         37281 Zend/zend_vm_execute.h 	zval *property;
property         37285 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC);
property         37293 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         37298 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_VAR == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         37300 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         38362 Zend/zend_vm_execute.h 	zval *property = NULL;
property         38385 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         38391 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_UNUSED == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         38410 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_UNUSED == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         38414 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         38432 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_UNUSED == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         38434 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         38452 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         39643 Zend/zend_vm_execute.h 	zval *property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         39666 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         39672 Zend/zend_vm_execute.h 			zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         39691 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         39695 Zend/zend_vm_execute.h 					z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R TSRMLS_CC);
property         39713 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         39715 Zend/zend_vm_execute.h 					Z_OBJ_HT_P(object)->write_dimension(object, property, z TSRMLS_CC);
property         39733 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         39896 Zend/zend_vm_execute.h 	zval *property;
property         39902 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         39927 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         39931 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         39949 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         39965 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         39979 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         40004 Zend/zend_vm_execute.h 	zval *property;
property         40010 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         40032 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         40036 Zend/zend_vm_execute.h 		zval **zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         40054 Zend/zend_vm_execute.h 			z = Z_OBJ_HT_P(object)->read_property(object, property, BP_VAR_R, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         40072 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(object)->write_property(object, property, z_copy, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
property         40083 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         40314 Zend/zend_vm_execute.h 	zval *property;
property         40318 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         40321 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         40328 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         40330 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         40357 Zend/zend_vm_execute.h 	zval *property;
property         40361 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         40365 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         40370 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_RW TSRMLS_CC);
property         40372 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property         40432 Zend/zend_vm_execute.h 		zval *property;
property         40436 Zend/zend_vm_execute.h 		property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         40440 Zend/zend_vm_execute.h 			MAKE_REAL_ZVAL_PTR(property);
property         40445 Zend/zend_vm_execute.h 		zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_W TSRMLS_CC);
property         40447 Zend/zend_vm_execute.h 			zval_ptr_dtor(&property);
property         40467 Zend/zend_vm_execute.h 	zval *property;
property         40471 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC);
property         40479 Zend/zend_vm_execute.h 		MAKE_REAL_ZVAL_PTR(property);
property         40484 Zend/zend_vm_execute.h 	zend_fetch_property_address(&EX_T(opline->result.var), container, property, ((IS_CV == IS_CONST) ? opline->op2.literal : NULL), BP_VAR_UNSET TSRMLS_CC);
property         40486 Zend/zend_vm_execute.h 		zval_ptr_dtor(&property);
property          187 ext/com_dotnet/com_handlers.c static void com_object_set(zval **property, zval *value TSRMLS_DC)
property          192 ext/com_dotnet/com_handlers.c static zval *com_object_get(zval *property TSRMLS_DC)
property          285 ext/com_dotnet/com_saproxy.c static void saproxy_object_set(zval **property, zval *value TSRMLS_DC)
property          289 ext/com_dotnet/com_saproxy.c static zval *saproxy_object_get(zval *property TSRMLS_DC)
property         3878 ext/reflection/php_reflection.c 	zval *property;
property         3893 ext/reflection/php_reflection.c 			MAKE_STD_ZVAL(property);
property         3894 ext/reflection/php_reflection.c 			ZVAL_STRINGL(property, name, name_len, 1);
property         3895 ext/reflection/php_reflection.c 			if (Z_OBJ_HANDLER_P(intern->obj, has_property)(intern->obj, property, 2, 0 TSRMLS_CC)) {
property         3896 ext/reflection/php_reflection.c 				zval_ptr_dtor(&property);
property         3899 ext/reflection/php_reflection.c 			zval_ptr_dtor(&property);
property         3979 ext/reflection/php_reflection.c 	zval *property;
property         3989 ext/reflection/php_reflection.c 		ALLOC_ZVAL(property);
property         3990 ext/reflection/php_reflection.c 		reflection_property_factory(ce, pptr, property TSRMLS_CC);
property         3991 ext/reflection/php_reflection.c 		add_next_index_zval(retval, property);
property         4000 ext/reflection/php_reflection.c 	zval *property;
property         4017 ext/reflection/php_reflection.c 		MAKE_STD_ZVAL(property);
property         4019 ext/reflection/php_reflection.c 		reflection_property_factory(ce, &EG(std_property_info), property TSRMLS_CC);
property         4020 ext/reflection/php_reflection.c 		add_next_index_zval(retval, property);
property         6241 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_STATIC", ZEND_ACC_STATIC);
property         6242 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_PUBLIC", ZEND_ACC_PUBLIC);
property         6243 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_PROTECTED", ZEND_ACC_PROTECTED);
property         6244 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_PRIVATE", ZEND_ACC_PRIVATE);
property         1701 ext/soap/php_encoding.c 			xmlNodePtr property;
property         1723 ext/soap/php_encoding.c 							property = xmlNewNode(NULL, BAD_CAST("BOGUS"));
property         1724 ext/soap/php_encoding.c 							xmlAddChild(node, property);
property         1725 ext/soap/php_encoding.c 							set_xsi_nil(property);
property         1727 ext/soap/php_encoding.c 							property = master_to_xml(enc, *val, style, node TSRMLS_CC);
property         1728 ext/soap/php_encoding.c 							if (property->children && property->children->content &&
property         1729 ext/soap/php_encoding.c 							    model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != 0) {
property         1730 ext/soap/php_encoding.c 								soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->content);
property         1733 ext/soap/php_encoding.c 						xmlNodeSetName(property, BAD_CAST(model->u.element->name));
property         1737 ext/soap/php_encoding.c 							xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens);
property         1738 ext/soap/php_encoding.c 							xmlSetNs(property, nsp);
property         1744 ext/soap/php_encoding.c 						property = xmlNewNode(NULL, BAD_CAST("BOGUS"));
property         1745 ext/soap/php_encoding.c 						xmlAddChild(node, property);
property         1746 ext/soap/php_encoding.c 						set_xsi_nil(property);
property         1750 ext/soap/php_encoding.c 						property = master_to_xml(enc, data, style, node TSRMLS_CC);
property         1751 ext/soap/php_encoding.c 						if (property->children && property->children->content &&
property         1752 ext/soap/php_encoding.c 						    model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != 0) {
property         1753 ext/soap/php_encoding.c 							soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->content);
property         1756 ext/soap/php_encoding.c 					xmlNodeSetName(property, BAD_CAST(model->u.element->name));
property         1760 ext/soap/php_encoding.c 						xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens);
property         1761 ext/soap/php_encoding.c 						xmlSetNs(property, nsp);
property         1766 ext/soap/php_encoding.c 				property = xmlNewNode(NULL, BAD_CAST(model->u.element->name));
property         1767 ext/soap/php_encoding.c 				xmlAddChild(node, property);
property         1768 ext/soap/php_encoding.c 				set_xsi_nil(property);
property         1772 ext/soap/php_encoding.c 					xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens);
property         1773 ext/soap/php_encoding.c 					xmlSetNs(property, nsp);
property         1788 ext/soap/php_encoding.c 			xmlNodePtr property;
property         1802 ext/soap/php_encoding.c 						property = master_to_xml(enc, *val, style, node TSRMLS_CC);
property         1806 ext/soap/php_encoding.c 					property = master_to_xml(enc, data, style, node TSRMLS_CC);
property         1985 ext/soap/php_encoding.c 					xmlNodePtr property;
property         1987 ext/soap/php_encoding.c 						property = xmlNewNode(NULL, BAD_CAST("BOGUS"));
property         1988 ext/soap/php_encoding.c 						xmlAddChild(xmlParam, property);
property         1989 ext/soap/php_encoding.c 						set_xsi_nil(property);
property         1991 ext/soap/php_encoding.c 						property = master_to_xml(array_el->encode, *val, style, xmlParam TSRMLS_CC);
property         1993 ext/soap/php_encoding.c 					xmlNodeSetName(property, BAD_CAST(array_el->name));
property         1997 ext/soap/php_encoding.c 						xmlNsPtr nsp = encode_add_ns(property, array_el->namens);
property         1998 ext/soap/php_encoding.c 						xmlSetNs(property, nsp);
property         2058 ext/soap/php_encoding.c 				xmlNodePtr property;
property         2068 ext/soap/php_encoding.c 				property = master_to_xml(get_conversion((*zprop)->type), (*zprop), style, xmlParam TSRMLS_CC);
property         2081 ext/soap/php_encoding.c 						xmlNodeSetName(property, BAD_CAST(prop_name));
property          631 ext/xmlreader/php_xmlreader.c 	long property;
property          635 ext/xmlreader/php_xmlreader.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &property) == FAILURE) {
property          643 ext/xmlreader/php_xmlreader.c 		retval = xmlTextReaderGetParserProp(intern->ptr,property);
property          991 ext/xmlreader/php_xmlreader.c 	long property;
property          996 ext/xmlreader/php_xmlreader.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lb", &property, &value) == FAILURE) {
property         1004 ext/xmlreader/php_xmlreader.c 		retval = xmlTextReaderSetParserProp(intern->ptr,property, value);
property         1189 ext/xmlreader/php_xmlreader.c 	ZEND_ARG_INFO(0, property)
property         1248 ext/xmlreader/php_xmlreader.c 	ZEND_ARG_INFO(0, property)