Lines Matching defs:json
45 void SourceManager::EnableReply(const std::unique_ptr<PtJson> json)
47 if (json == nullptr) {
48 LOGE("arkdb: json parse error");
52 if (!json->IsObject()) {
53 LOGE("arkdb: json parse format error");
54 json->ReleaseRoot();
59 Result ret = json->GetObject("params", ¶ms);
137 void SourceManager::GetDebugSources(const std::unique_ptr<PtJson> json)
140 Result ret = json->GetString("functionName", &funcName);
147 ret = json->GetObject("location", &location);