the_zstack        251 ext/json/JSON_parser.c         jp->the_zstack = (zval **)safe_emalloc(depth, sizeof(zval), 0);
the_zstack        253 ext/json/JSON_parser.c         jp->the_zstack = &jp->the_static_zstack[0];
the_zstack        266 ext/json/JSON_parser.c     if (jp->the_zstack != &jp->the_static_zstack[0]) {
the_zstack        267 ext/json/JSON_parser.c         efree(jp->the_zstack);
the_zstack        394 ext/json/JSON_parser.c     zval *root = jp->the_zstack[up];
the_zstack        395 ext/json/JSON_parser.c     zval *child =  jp->the_zstack[cur];
the_zstack        553 ext/json/JSON_parser.c                         add_property_zval_ex(jp->the_zstack[jp->top], (key.len ? key.c : "_empty_"), (key.len ? (key.len + 1) : sizeof("_empty_")), mval TSRMLS_CC);
the_zstack        556 ext/json/JSON_parser.c                         add_assoc_zval_ex(jp->the_zstack[jp->top], (key.len ? key.c : ""), (key.len ? (key.len + 1) : sizeof("")), mval);
the_zstack        579 ext/json/JSON_parser.c                     add_next_index_zval(jp->the_zstack[jp->top], mval);
the_zstack        614 ext/json/JSON_parser.c                     jp->the_zstack[jp->top] = obj;
the_zstack        642 ext/json/JSON_parser.c                     jp->the_zstack[jp->top] = arr;
the_zstack        698 ext/json/JSON_parser.c                                     add_property_zval_ex(jp->the_zstack[jp->top], (key.len ? key.c : "_empty_"), (key.len ? (key.len + 1) : sizeof("_empty_")), mval TSRMLS_CC);
the_zstack        701 ext/json/JSON_parser.c                                     add_assoc_zval_ex(jp->the_zstack[jp->top], (key.len ? key.c : ""), (key.len ? (key.len + 1) : sizeof("")), mval);
the_zstack        710 ext/json/JSON_parser.c                             add_next_index_zval(jp->the_zstack[jp->top], mval);
the_zstack         18 ext/json/JSON_parser.h     zval **the_zstack;