Lines Matching refs:zvalue

126 	zend_object_value zvalue;  in spl_object_storage_get()  local
127 memset(&zvalue, 0, sizeof(zend_object_value)); in spl_object_storage_get()
128 zvalue.handle = Z_OBJ_HANDLE_P(obj); in spl_object_storage_get()
129 zvalue.handlers = Z_OBJ_HT_P(obj); in spl_object_storage_get()
130 pzvalue = &zvalue; in spl_object_storage_get()
160 zend_object_value zvalue; in spl_object_storage_attach() local
161 memset(&zvalue, 0, sizeof(zend_object_value)); in spl_object_storage_attach()
162 zvalue.handle = Z_OBJ_HANDLE_P(obj); in spl_object_storage_attach()
163 zvalue.handlers = Z_OBJ_HT_P(obj); in spl_object_storage_attach()
164 …zend_hash_update(&intern->storage, (char*)&zvalue, sizeof(zend_object_value), &element, sizeof(spl… in spl_object_storage_attach()
175 zend_object_value zvalue; in spl_object_storage_detach()
176 memset(&zvalue, 0, sizeof(zend_object_value)); in spl_object_storage_detach()
177 zvalue.handle = Z_OBJ_HANDLE_P(obj); in spl_object_storage_detach()
178 zvalue.handlers = Z_OBJ_HT_P(obj); in spl_object_storage_detach()
179 return zend_hash_del(&intern->storage, (char*)&zvalue, sizeof(zend_object_value)); in spl_object_storage_detach()
383 zend_object_value zvalue; in spl_object_storage_contains()
384 memset(&zvalue, 0, sizeof(zend_object_value)); in spl_object_storage_contains()
385 zvalue.handle = Z_OBJ_HANDLE_P(obj); in spl_object_storage_contains()
386 zvalue.handlers = Z_OBJ_HT_P(obj); in spl_object_storage_contains()
387 return zend_hash_exists(&intern->storage, (char*)&zvalue, sizeof(zend_object_value)); in spl_object_storage_contains()