zobj             1162 Zend/zend_builtin_functions.c 	zend_object *zobj;
zobj             1184 Zend/zend_builtin_functions.c 	zobj = Z_OBJ_P(obj);
zobj             1186 Zend/zend_builtin_functions.c 	if (!zobj->ce->default_properties_count && properties == zobj->properties) {
zobj             1188 Zend/zend_builtin_functions.c 		if (EXPECTED(zobj->handlers == &std_object_handlers)) {
zobj             1200 Zend/zend_builtin_functions.c 				if (zend_check_property_access(zobj, key) == SUCCESS) {
zobj             1132 Zend/zend_execute.c 		zend_object *zobj = Z_OBJ_P(object);
zobj             1136 Zend/zend_execute.c 			property = OBJ_PROP(zobj, prop_offset);
zobj             1146 Zend/zend_execute.c 			if (EXPECTED(zobj->properties != NULL)) {
zobj             1147 Zend/zend_execute.c 				if (UNEXPECTED(GC_REFCOUNT(zobj->properties) > 1)) {
zobj             1148 Zend/zend_execute.c 					if (EXPECTED(!(GC_FLAGS(zobj->properties) & IS_ARRAY_IMMUTABLE))) {
zobj             1149 Zend/zend_execute.c 						GC_REFCOUNT(zobj->properties)--;
zobj             1151 Zend/zend_execute.c 					zobj->properties = zend_array_dup(zobj->properties);
zobj             1153 Zend/zend_execute.c 				property = zend_hash_find(zobj->properties, Z_STR_P(property_name));
zobj             1159 Zend/zend_execute.c 			if (!zobj->ce->__set) {
zobj             1161 Zend/zend_execute.c 				if (EXPECTED(zobj->properties == NULL)) {
zobj             1162 Zend/zend_execute.c 					rebuild_object_properties(zobj);
zobj             1195 Zend/zend_execute.c 				zend_hash_add_new(zobj->properties, Z_STR_P(property_name), value);
zobj             1947 Zend/zend_execute.c 		zend_object *zobj = Z_OBJ_P(container);
zobj             1951 Zend/zend_execute.c 			retval = OBJ_PROP(zobj, prop_offset);
zobj             1956 Zend/zend_execute.c 		} else if (EXPECTED(zobj->properties != NULL)) {
zobj             1957 Zend/zend_execute.c 			if (UNEXPECTED(GC_REFCOUNT(zobj->properties) > 1)) {
zobj             1958 Zend/zend_execute.c 				if (EXPECTED(!(GC_FLAGS(zobj->properties) & IS_ARRAY_IMMUTABLE))) {
zobj             1959 Zend/zend_execute.c 					GC_REFCOUNT(zobj->properties)--;
zobj             1961 Zend/zend_execute.c 				zobj->properties = zend_array_dup(zobj->properties);
zobj             1963 Zend/zend_execute.c 			retval = zend_hash_find(zobj->properties, Z_STR_P(prop_ptr));
zobj               73 Zend/zend_object_handlers.c ZEND_API void rebuild_object_properties(zend_object *zobj) /* {{{ */
zobj               75 Zend/zend_object_handlers.c 	if (!zobj->properties) {
zobj               77 Zend/zend_object_handlers.c 		zend_class_entry *ce = zobj->ce;
zobj               79 Zend/zend_object_handlers.c 		ALLOC_HASHTABLE(zobj->properties);
zobj               80 Zend/zend_object_handlers.c 		zend_hash_init(zobj->properties, ce->default_properties_count, NULL, ZVAL_PTR_DTOR, 0);
zobj               82 Zend/zend_object_handlers.c 			zend_hash_real_init(zobj->properties, 0);
zobj               83 Zend/zend_object_handlers.c 			zobj->properties->nInternalPointer = 0;
zobj               88 Zend/zend_object_handlers.c 					if (UNEXPECTED(Z_TYPE_P(OBJ_PROP(zobj, prop_info->offset)) == IS_UNDEF)) {
zobj               89 Zend/zend_object_handlers.c 						zobj->properties->u.v.flags |= HASH_FLAG_HAS_EMPTY_IND;
zobj               92 Zend/zend_object_handlers.c 					_zend_hash_append_ind(zobj->properties, prop_info->name, 
zobj               93 Zend/zend_object_handlers.c 						OBJ_PROP(zobj, prop_info->offset));
zobj              104 Zend/zend_object_handlers.c 						if (UNEXPECTED(Z_TYPE_P(OBJ_PROP(zobj, prop_info->offset)) == IS_UNDEF)) {
zobj              105 Zend/zend_object_handlers.c 							zobj->properties->u.v.flags |= HASH_FLAG_HAS_EMPTY_IND;
zobj              108 Zend/zend_object_handlers.c 						ZVAL_INDIRECT(&zv, OBJ_PROP(zobj, prop_info->offset));
zobj              109 Zend/zend_object_handlers.c 						zend_hash_add(zobj->properties, prop_info->name, &zv);
zobj              120 Zend/zend_object_handlers.c 	zend_object *zobj;
zobj              121 Zend/zend_object_handlers.c 	zobj = Z_OBJ_P(object);
zobj              122 Zend/zend_object_handlers.c 	if (!zobj->properties) {
zobj              123 Zend/zend_object_handlers.c 		rebuild_object_properties(zobj);
zobj              125 Zend/zend_object_handlers.c 	return zobj->properties;
zobj              136 Zend/zend_object_handlers.c 		zend_object *zobj = Z_OBJ_P(object);
zobj              138 Zend/zend_object_handlers.c 		if (zobj->properties) {
zobj              141 Zend/zend_object_handlers.c 			return zobj->properties;
zobj              143 Zend/zend_object_handlers.c 			*table = zobj->properties_table;
zobj              144 Zend/zend_object_handlers.c 			*n = zobj->ce->default_properties_count;
zobj              449 Zend/zend_object_handlers.c ZEND_API int zend_check_property_access(zend_object *zobj, zend_string *prop_info_name) /* {{{ */
zobj              463 Zend/zend_object_handlers.c 	property_info = zend_get_property_info(zobj->ce, member, 1);
zobj              484 Zend/zend_object_handlers.c 	return zend_verify_property_access(property_info, zobj->ce) ? SUCCESS : FAILURE;
zobj              493 Zend/zend_object_handlers.c static zend_long *zend_get_property_guard(zend_object *zobj, zend_string *member) /* {{{ */
zobj              498 Zend/zend_object_handlers.c 	ZEND_ASSERT(GC_FLAGS(zobj) & IS_OBJ_USE_GUARDS);
zobj              499 Zend/zend_object_handlers.c 	if (GC_FLAGS(zobj) & IS_OBJ_HAS_GUARDS) {
zobj              500 Zend/zend_object_handlers.c 		guards = Z_PTR(zobj->properties_table[zobj->ce->default_properties_count]);
zobj              508 Zend/zend_object_handlers.c 		Z_PTR(zobj->properties_table[zobj->ce->default_properties_count]) = guards;
zobj              509 Zend/zend_object_handlers.c 		GC_FLAGS(zobj) |= IS_OBJ_HAS_GUARDS;
zobj              519 Zend/zend_object_handlers.c 	zend_object *zobj;
zobj              524 Zend/zend_object_handlers.c 	zobj = Z_OBJ_P(object);
zobj              538 Zend/zend_object_handlers.c 	property_offset = zend_get_property_offset(zobj->ce, Z_STR_P(member), (type == BP_VAR_IS) || (zobj->ce->__get != NULL), cache_slot);
zobj              542 Zend/zend_object_handlers.c 			retval = OBJ_PROP(zobj, property_offset);
zobj              546 Zend/zend_object_handlers.c 		} else if (EXPECTED(zobj->properties != NULL)) {
zobj              547 Zend/zend_object_handlers.c 			retval = zend_hash_find(zobj->properties, Z_STR_P(member));
zobj              556 Zend/zend_object_handlers.c 	if (zobj->ce->__get) {
zobj              557 Zend/zend_object_handlers.c 		zend_long *guard = zend_get_property_guard(zobj, Z_STR_P(member));
zobj              573 Zend/zend_object_handlers.c 						zend_error(E_NOTICE, "Indirect modification of overloaded property %s::$%s has no effect", ZSTR_VAL(zobj->ce->name), Z_STRVAL_P(member));
zobj              596 Zend/zend_object_handlers.c 		zend_error(E_NOTICE,"Undefined property: %s::$%s", ZSTR_VAL(zobj->ce->name), Z_STRVAL_P(member));
zobj              611 Zend/zend_object_handlers.c 	zend_object *zobj;
zobj              616 Zend/zend_object_handlers.c 	zobj = Z_OBJ_P(object);
zobj              625 Zend/zend_object_handlers.c 	property_offset = zend_get_property_offset(zobj->ce, Z_STR_P(member), (zobj->ce->__set != NULL), cache_slot);
zobj              629 Zend/zend_object_handlers.c 			variable_ptr = OBJ_PROP(zobj, property_offset);
zobj              633 Zend/zend_object_handlers.c 		} else if (EXPECTED(zobj->properties != NULL)) {
zobj              634 Zend/zend_object_handlers.c 			if (UNEXPECTED(GC_REFCOUNT(zobj->properties) > 1)) {
zobj              635 Zend/zend_object_handlers.c 				if (EXPECTED(!(GC_FLAGS(zobj->properties) & IS_ARRAY_IMMUTABLE))) {
zobj              636 Zend/zend_object_handlers.c 					GC_REFCOUNT(zobj->properties)--;
zobj              638 Zend/zend_object_handlers.c 				zobj->properties = zend_array_dup(zobj->properties);
zobj              640 Zend/zend_object_handlers.c 			if ((variable_ptr = zend_hash_find(zobj->properties, Z_STR_P(member))) != NULL) {
zobj              651 Zend/zend_object_handlers.c 	if (zobj->ce->__set) {
zobj              652 Zend/zend_object_handlers.c 		zend_long *guard = zend_get_property_guard(zobj, Z_STR_P(member));
zobj              691 Zend/zend_object_handlers.c 			ZVAL_COPY_VALUE(OBJ_PROP(zobj, property_offset), value);
zobj              693 Zend/zend_object_handlers.c 			if (!zobj->properties) {
zobj              694 Zend/zend_object_handlers.c 				rebuild_object_properties(zobj);
zobj              696 Zend/zend_object_handlers.c 			zend_hash_add_new(zobj->properties, Z_STR_P(member), value);
zobj              791 Zend/zend_object_handlers.c 	zend_object *zobj;
zobj              796 Zend/zend_object_handlers.c 	zobj = Z_OBJ_P(object);
zobj              807 Zend/zend_object_handlers.c 	property_offset = zend_get_property_offset(zobj->ce, name, (zobj->ce->__get != NULL), cache_slot);
zobj              811 Zend/zend_object_handlers.c 			retval = OBJ_PROP(zobj, property_offset);
zobj              813 Zend/zend_object_handlers.c 				if (EXPECTED(!zobj->ce->__get) ||
zobj              814 Zend/zend_object_handlers.c 				    UNEXPECTED((*zend_get_property_guard(zobj, name)) & IN_GET)) {
zobj              819 Zend/zend_object_handlers.c 						zend_error(E_NOTICE, "Undefined property: %s::$%s", ZSTR_VAL(zobj->ce->name), ZSTR_VAL(name));
zobj              827 Zend/zend_object_handlers.c 			if (EXPECTED(zobj->properties)) {
zobj              828 Zend/zend_object_handlers.c 				if (UNEXPECTED(GC_REFCOUNT(zobj->properties) > 1)) {
zobj              829 Zend/zend_object_handlers.c 					if (EXPECTED(!(GC_FLAGS(zobj->properties) & IS_ARRAY_IMMUTABLE))) {
zobj              830 Zend/zend_object_handlers.c 						GC_REFCOUNT(zobj->properties)--;
zobj              832 Zend/zend_object_handlers.c 					zobj->properties = zend_array_dup(zobj->properties);
zobj              834 Zend/zend_object_handlers.c 			    if (EXPECTED((retval = zend_hash_find(zobj->properties, name)) != NULL)) {
zobj              841 Zend/zend_object_handlers.c 			if (EXPECTED(!zobj->ce->__get) ||
zobj              842 Zend/zend_object_handlers.c 			    UNEXPECTED((*zend_get_property_guard(zobj, name)) & IN_GET)) {
zobj              843 Zend/zend_object_handlers.c 				if (UNEXPECTED(!zobj->properties)) {
zobj              844 Zend/zend_object_handlers.c 					rebuild_object_properties(zobj);
zobj              846 Zend/zend_object_handlers.c 				retval = zend_hash_update(zobj->properties, name, &EG(uninitialized_zval));
zobj              850 Zend/zend_object_handlers.c 					zend_error(E_NOTICE, "Undefined property: %s::$%s", ZSTR_VAL(zobj->ce->name), ZSTR_VAL(name));
zobj              865 Zend/zend_object_handlers.c 	zend_object *zobj;
zobj              869 Zend/zend_object_handlers.c 	zobj = Z_OBJ_P(object);
zobj              878 Zend/zend_object_handlers.c 	property_offset = zend_get_property_offset(zobj->ce, Z_STR_P(member), (zobj->ce->__unset != NULL), cache_slot);
zobj              882 Zend/zend_object_handlers.c 			zval *slot = OBJ_PROP(zobj, property_offset);
zobj              887 Zend/zend_object_handlers.c 				if (zobj->properties) {
zobj              888 Zend/zend_object_handlers.c 					zobj->properties->u.v.flags |= HASH_FLAG_HAS_EMPTY_IND;
zobj              892 Zend/zend_object_handlers.c 		} else if (EXPECTED(zobj->properties != NULL)) {
zobj              893 Zend/zend_object_handlers.c 			if (UNEXPECTED(GC_REFCOUNT(zobj->properties) > 1)) {
zobj              894 Zend/zend_object_handlers.c 				if (EXPECTED(!(GC_FLAGS(zobj->properties) & IS_ARRAY_IMMUTABLE))) {
zobj              895 Zend/zend_object_handlers.c 					GC_REFCOUNT(zobj->properties)--;
zobj              897 Zend/zend_object_handlers.c 				zobj->properties = zend_array_dup(zobj->properties);
zobj              899 Zend/zend_object_handlers.c 			if (EXPECTED(zend_hash_del(zobj->properties, Z_STR_P(member)) != FAILURE)) {
zobj              908 Zend/zend_object_handlers.c 	if (zobj->ce->__unset) {
zobj              909 Zend/zend_object_handlers.c 		zend_long *guard = zend_get_property_guard(zobj, Z_STR_P(member));
zobj             1083 Zend/zend_object_handlers.c 	zend_object *zobj = *obj_ptr;
zobj             1099 Zend/zend_object_handlers.c 	if (UNEXPECTED((func = zend_hash_find(&zobj->ce->function_table, lc_method_name)) == NULL)) {
zobj             1103 Zend/zend_object_handlers.c 		if (zobj->ce->__call) {
zobj             1104 Zend/zend_object_handlers.c 			return zend_get_user_call_function(zobj->ce, method_name);
zobj             1118 Zend/zend_object_handlers.c 		updated_fbc = zend_check_private_int(fbc, zobj->ce, lc_method_name);
zobj             1122 Zend/zend_object_handlers.c 			if (zobj->ce->__call) {
zobj             1123 Zend/zend_object_handlers.c 				fbc = zend_get_user_call_function(zobj->ce, method_name);
zobj             1149 Zend/zend_object_handlers.c 				if (zobj->ce->__call) {
zobj             1150 Zend/zend_object_handlers.c 					fbc = zend_get_user_call_function(zobj->ce, method_name);
zobj             1317 Zend/zend_object_handlers.c ZEND_API union _zend_function *zend_std_get_constructor(zend_object *zobj) /* {{{ */
zobj             1319 Zend/zend_object_handlers.c 	zend_function *constructor = zobj->ce->constructor;
zobj             1425 Zend/zend_object_handlers.c 	zend_object *zobj;
zobj             1431 Zend/zend_object_handlers.c 	zobj = Z_OBJ_P(object);
zobj             1440 Zend/zend_object_handlers.c 	property_offset = zend_get_property_offset(zobj->ce, Z_STR_P(member), 1, cache_slot);
zobj             1444 Zend/zend_object_handlers.c 			value = OBJ_PROP(zobj, property_offset);
zobj             1448 Zend/zend_object_handlers.c 		} else if (EXPECTED(zobj->properties != NULL) &&
zobj             1449 Zend/zend_object_handlers.c 		           (value = zend_hash_find(zobj->properties, Z_STR_P(member))) != NULL) {
zobj             1471 Zend/zend_object_handlers.c 	if ((has_set_exists != 2) && zobj->ce->__isset) {
zobj             1472 Zend/zend_object_handlers.c 		zend_long *guard = zend_get_property_guard(zobj, Z_STR_P(member));
zobj             1486 Zend/zend_object_handlers.c 					if (EXPECTED(!EG(exception)) && zobj->ce->__get && !((*guard) & IN_GET)) {
zobj             1514 Zend/zend_object_handlers.c zend_string *zend_std_object_get_class_name(const zend_object *zobj) /* {{{ */
zobj             1516 Zend/zend_object_handlers.c 	return zend_string_copy(zobj->ce->name);
zobj              173 Zend/zend_object_handlers.h ZEND_API void rebuild_object_properties(zend_object *zobj);
zobj              179 Zend/zend_object_handlers.h ZEND_API int zend_check_property_access(zend_object *zobj, zend_string *prop_info_name);
zobj             1829 Zend/zend_vm_def.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             1833 Zend/zend_vm_def.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             1837 Zend/zend_vm_def.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             1842 Zend/zend_vm_def.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             1843 Zend/zend_vm_def.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             1851 Zend/zend_vm_def.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             1856 Zend/zend_vm_def.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             1963 Zend/zend_vm_def.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             1967 Zend/zend_vm_def.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             1971 Zend/zend_vm_def.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             1976 Zend/zend_vm_def.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             1977 Zend/zend_vm_def.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             1985 Zend/zend_vm_def.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             1990 Zend/zend_vm_def.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             5224 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             5228 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             5232 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             5237 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             5238 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             5246 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             5251 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             5296 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             5300 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             5304 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             5309 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             5310 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             5318 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             5323 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             9014 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             9018 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             9022 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             9027 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             9028 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             9036 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             9041 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             9086 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             9090 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             9094 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             9099 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             9100 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             9108 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             9113 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             10834 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             10838 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             10842 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             10847 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             10848 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             10856 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             10861 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             10907 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             10911 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             10915 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             10920 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             10921 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             10929 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             10934 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             12736 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             12740 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             12744 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             12749 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             12750 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             12758 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             12763 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             14009 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             14013 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             14017 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             14022 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             14023 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             14031 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             14036 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             14522 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             14526 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             14530 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             14535 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             14536 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             14544 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             14549 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             17191 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             17195 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             17199 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             17204 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             17205 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             17213 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             17218 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             20395 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             20399 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             20403 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             20408 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             20409 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             20417 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             20422 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             22058 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             22062 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             22066 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             22071 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             22072 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             22080 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             22085 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             23456 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             23460 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             23464 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             23469 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             23470 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             23478 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             23483 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             23589 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             23593 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             23597 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             23602 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             23603 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             23611 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             23616 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             25871 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             25875 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             25879 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             25884 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             25885 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             25893 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             25898 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             26004 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             26008 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             26012 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             26017 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             26018 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             26026 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             26031 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             27361 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             27365 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             27369 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             27374 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             27375 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             27383 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             27388 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             27495 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             27499 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             27503 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             27508 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             27509 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             27517 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             27522 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             31409 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             31413 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             31417 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             31422 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             31423 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             31431 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             31436 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             31542 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             31546 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             31550 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             31555 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             31556 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             31564 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             31569 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             36479 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             36483 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             36487 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             36492 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             36493 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             36501 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             36506 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             36612 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             36616 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             36620 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             36625 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             36626 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             36634 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             36639 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             39143 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             39147 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             39151 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             39156 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             39157 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             39165 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             39170 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             39277 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             39281 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             39285 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             39290 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             39291 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             39299 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             39304 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             41678 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             41682 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             41686 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             41691 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             41692 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             41700 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             41705 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             43870 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             43874 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             43878 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             43883 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             43884 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             43892 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             43897 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj             45015 Zend/zend_vm_execute.h 		zend_object *zobj = Z_OBJ_P(container);
zobj             45019 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
zobj             45023 Zend/zend_vm_execute.h 				retval = OBJ_PROP(zobj, prop_offset);
zobj             45028 Zend/zend_vm_execute.h 			} else if (EXPECTED(zobj->properties != NULL)) {
zobj             45029 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
zobj             45037 Zend/zend_vm_execute.h 		if (UNEXPECTED(zobj->handlers->read_property == NULL)) {
zobj             45042 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
zobj              653 ext/com_dotnet/com_persist.c 	zval *zobj = NULL;
zobj              657 ext/com_dotnet/com_persist.c 				&zobj, php_com_variant_class_entry)) {
zobj              662 ext/com_dotnet/com_persist.c 	if (!zobj) {
zobj              666 ext/com_dotnet/com_persist.c 	obj = CDNO_FETCH(zobj);
zobj               42 ext/com_dotnet/com_saproxy.c 	zval *zobj;
zobj              379 ext/com_dotnet/com_saproxy.c 	zval_ptr_dtor(proxy->zobj);
zobj              391 ext/com_dotnet/com_saproxy.c 	Z_ADDREF_P(cloneproxy->zobj);
zobj              434 ext/com_dotnet/com_saproxy.c 		proxy->zobj = rel->zobj;
zobj              438 ext/com_dotnet/com_saproxy.c 		proxy->zobj = com_object;
zobj              441 ext/com_dotnet/com_saproxy.c 	Z_ADDREF_P(proxy->zobj);
zobj              510 ext/com_dotnet/com_variant.c 	zval *zobj, *zvalue = NULL;
zobj              514 ext/com_dotnet/com_variant.c 			"Oz!", &zobj, php_com_variant_class_entry, &zvalue)) {
zobj              518 ext/com_dotnet/com_variant.c 	obj = CDNO_FETCH(zobj);
zobj             1032 ext/com_dotnet/com_variant.c 	zval *zobj;
zobj             1036 ext/com_dotnet/com_variant.c 		"O", &zobj, php_com_variant_class_entry)) {
zobj             1039 ext/com_dotnet/com_variant.c 	obj = CDNO_FETCH(zobj);
zobj             1049 ext/com_dotnet/com_variant.c 	zval *zobj;
zobj             1055 ext/com_dotnet/com_variant.c 		"Ol", &zobj, php_com_variant_class_entry, &vt)) {
zobj             1058 ext/com_dotnet/com_variant.c 	obj = CDNO_FETCH(zobj);
zobj             1084 ext/com_dotnet/com_variant.c 	zval *zobj;
zobj             1091 ext/com_dotnet/com_variant.c 		"Ol", &zobj, php_com_variant_class_entry, &vt)) {
zobj             1094 ext/com_dotnet/com_variant.c 	obj = CDNO_FETCH(zobj);
zobj               63 ext/intl/converter/converter.c static void php_converter_default_callback(zval *return_value, zval *zobj, zend_long reason, zval *error) {
zobj               73 ext/intl/converter/converter.c 			php_converter_object *objval = (php_converter_object*)CONV_GET(zobj);
zobj              526 ext/intl/converter/converter.c static void php_converter_resolve_callback(zval *zobj,
zobj              535 ext/intl/converter/converter.c 	Z_ADDREF_P(zobj);
zobj              536 ext/intl/converter/converter.c 	add_index_zval(&caller, 0, zobj);
zobj             2486 ext/pdo/pdo_stmt.c 	zval zobj;
zobj             2512 ext/pdo/pdo_stmt.c 				ZVAL_OBJ(&zobj, &stmt->std);
zobj             2514 ext/pdo/pdo_stmt.c 				return std_object_handlers.read_property(&zobj, member, type, cache_slot, rv);
zobj             1130 ext/phar/phar_object.c 	zval *zobj = getThis(), arg1, arg2;
zobj             1132 ext/phar/phar_object.c 	phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
zobj             1134 ext/phar/phar_object.c 	is_data = instanceof_function(Z_OBJCE_P(zobj), phar_ce_data);
zobj             1233 ext/phar/phar_object.c 	zend_call_method_with_2_params(zobj, Z_OBJCE_P(zobj),
zobj             1369 ext/phar/phar_object.c 	zval *zobj = getThis(); \
zobj             1370 ext/phar/phar_object.c 	phar_archive_object *phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset); \
zobj             1382 ext/phar/phar_object.c 	zval *zobj = getThis();
zobj             1383 ext/phar/phar_object.c 	phar_archive_object *phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
zobj             4397 ext/phar/phar_object.c 	zval *zobj = getThis(), arg1;
zobj             4403 ext/phar/phar_object.c 	entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
zobj             4445 ext/phar/phar_object.c 	zend_call_method_with_1_params(zobj, Z_OBJCE_P(zobj),
zobj             4453 ext/phar/phar_object.c 	zval *zobj = getThis(); \
zobj             4454 ext/phar/phar_object.c 	phar_entry_object *entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset); \
zobj             4466 ext/phar/phar_object.c 	zval *zobj = getThis();
zobj             4467 ext/phar/phar_object.c 	phar_entry_object *entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
zobj             1492 ext/soap/php_encoding.c 					zend_object *zobj = Z_OBJ_P(ret);
zobj             1493 ext/soap/php_encoding.c 					zobj->ce = ce;
zobj              888 ext/spl/spl_iterators.c 	zval                    *zobj;
zobj              893 ext/spl/spl_iterators.c 	zobj = &object->iterators[level].zobject;
zobj              897 ext/spl/spl_iterators.c 		if ((function_handler = zend_hash_find_ptr(&Z_OBJCE_P(zobj)->function_table, method)) == NULL) {
zobj              898 ext/spl/spl_iterators.c 			if (Z_OBJ_HT_P(zobj)->get_method) {
zobj              899 ext/spl/spl_iterators.c 				*zobject = Z_OBJ_P(zobj);
zobj              903 ext/spl/spl_iterators.c 			*zobject = Z_OBJ_P(zobj);
zobj               64 ext/standard/http.c 				zend_object *zobj = Z_OBJ_P(type);
zobj               65 ext/standard/http.c 				if (zend_check_property_access(zobj, key) != SUCCESS) {