Home
last modified time | relevance | path

Searched refs:cjson_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/
H A Drd_json_object.cpp81 cjson_ = nullptr; in JsonObject()
93 return (cJSON_Compare(this->cjson_, other.cjson_, true) != 0); // CaseSensitive in operator ==()
274 if (cjson_ == nullptr || cjson_->type != cJSON_Object) { in GetObjectItem()
282 item.cjson_ = cJSON_GetObjectItemCaseSensitive(cjson_, field.c_str()); in GetObjectItem()
284 item.cjson_ = cJSON_GetObjectItem(cjson_, field.c_str()); in GetObjectItem()
302 next.cjson_ = cjson_->next; in GetNext()
316 child.cjson_ = cjson_->child; in GetChild()
476 if (cjson_ == nullptr || cjson_->string == nullptr) { in GetItemField()
570 curr.cjson_ = cjson_; in FindItem()
595 curr.cjson_ = cjson_; in FindItemPowerMode()
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/include/
H A Drd_json_object.h114 cJSON *cjson_ = nullptr; variable