Lines Matching refs:zv

187 typedef void (*serialize_callback_t)(zval                     *zv,
192 typedef void (*unserialize_callback_t)(zval *zv,
196 static void zend_file_cache_serialize_zval(zval *zv,
200 static void zend_file_cache_unserialize_zval(zval *zv,
319 static void zend_file_cache_serialize_zval(zval *zv, argument
324 switch (Z_TYPE_P(zv)) {
327 if (!IS_SERIALIZED(Z_STR_P(zv))) {
328 SERIALIZE_STR(Z_STR_P(zv));
332 if (!IS_SERIALIZED(Z_ARR_P(zv))) {
335 SERIALIZE_PTR(Z_ARR_P(zv));
336 ht = Z_ARR_P(zv);
342 if (!IS_SERIALIZED(Z_REF_P(zv))) {
345 SERIALIZE_PTR(Z_REF_P(zv));
346 ref = Z_REF_P(zv);
352 if (!IS_SERIALIZED(Z_AST_P(zv))) {
355 SERIALIZE_PTR(Z_AST_P(zv));
356 ast = Z_AST_P(zv);
422 SERIALIZE_PTR(opline->op1.zv);
425 SERIALIZE_PTR(opline->op2.zv);
517 static void zend_file_cache_serialize_func(zval *zv, argument
524 SERIALIZE_PTR(Z_PTR_P(zv));
525 op_array = Z_PTR_P(zv);
530 static void zend_file_cache_serialize_prop_info(zval *zv, argument
535 if (!IS_SERIALIZED(Z_PTR_P(zv))) {
538 SERIALIZE_PTR(Z_PTR_P(zv));
539 prop = Z_PTR_P(zv);
553 static void zend_file_cache_serialize_class_constant(zval *zv, argument
558 if (!IS_SERIALIZED(Z_PTR_P(zv))) {
561 SERIALIZE_PTR(Z_PTR_P(zv));
562 c = Z_PTR_P(zv);
578 static void zend_file_cache_serialize_class(zval *zv, argument
585 SERIALIZE_PTR(Z_PTR_P(zv));
586 ce = Z_PTR_P(zv);
977 static void zend_file_cache_unserialize_zval(zval *zv, argument
981 switch (Z_TYPE_P(zv)) {
984 if (!IS_UNSERIALIZED(Z_STR_P(zv))) {
985 UNSERIALIZE_STR(Z_STR_P(zv));
989 if (!IS_UNSERIALIZED(Z_ARR_P(zv))) {
992 UNSERIALIZE_PTR(Z_ARR_P(zv));
993 ht = Z_ARR_P(zv);
999 if (!IS_UNSERIALIZED(Z_REF_P(zv))) {
1002 UNSERIALIZE_PTR(Z_REF_P(zv));
1003 ref = Z_REF_P(zv);
1008 if (!IS_UNSERIALIZED(Z_AST_P(zv))) {
1011 UNSERIALIZE_PTR(Z_AST_P(zv));
1012 ast = Z_AST_P(zv);
1071 UNSERIALIZE_PTR(opline->op1.zv);
1074 UNSERIALIZE_PTR(opline->op2.zv);
1161 static void zend_file_cache_unserialize_func(zval *zv, argument
1167 UNSERIALIZE_PTR(Z_PTR_P(zv));
1168 op_array = Z_PTR_P(zv);
1172 static void zend_file_cache_unserialize_prop_info(zval *zv, argument
1176 if (!IS_UNSERIALIZED(Z_PTR_P(zv))) {
1179 UNSERIALIZE_PTR(Z_PTR_P(zv));
1180 prop = Z_PTR_P(zv);
1193 static void zend_file_cache_unserialize_class_constant(zval *zv, argument
1197 if (!IS_UNSERIALIZED(Z_PTR_P(zv))) {
1200 UNSERIALIZE_PTR(Z_PTR_P(zv));
1201 c = Z_PTR_P(zv);
1216 static void zend_file_cache_unserialize_class(zval *zv, argument
1222 UNSERIALIZE_PTR(Z_PTR_P(zv));
1223 ce = Z_PTR_P(zv);