Searched refs:json_tree (Results 1 – 3 of 3) sorted by relevance
38 grpc_json* json_tree = grpc_json_parse_string(json_string.get()); in Create() local39 if (json_tree == nullptr) { in Create()43 return MakeUnique<ServiceConfig>(std::move(json_string), json_tree); in Create()46 ServiceConfig::ServiceConfig(UniquePtr<char> json_string, grpc_json* json_tree) in ServiceConfig() argument47 : json_string_(std::move(json_string)), json_tree_(json_tree) {} in ServiceConfig()
103 ServiceConfig(UniquePtr<char> json_string, grpc_json* json_tree);
1215 json_tree = json.loads(rsp)1216 print(json.dumps(json_tree, indent=4, separators=(',', ': ')))