| 832 | } |
| 833 | |
| 834 | void json::reset() |
| 835 | { |
| 836 | clear(); |
| 837 | dbuf_->dbuf_reset(); |
| 838 | json_ = acl_json_dbuf_alloc(dbuf_->get_dbuf().get_dbuf()); |
| 839 | root_ = NULL; |
| 840 | iter_ = NULL; |
| 841 | } |
| 842 | |
| 843 | int json::push_pop(const char* in, size_t len acl_unused, |
| 844 | string* out, size_t max /* = 0 */) |
nothing calls this directly
no test coverage detected