Home
last modified time | relevance | path

Searched refs:json_tree (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc/src/core/lib/transport/
Dservice_config.cc38 grpc_json* json_tree = grpc_json_parse_string(json_string.get()); in Create() local
39 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() argument
47 : json_string_(std::move(json_string)), json_tree_(json_tree) {} in ServiceConfig()
Dservice_config.h103 ServiceConfig(UniquePtr<char> json_string, grpc_json* json_tree);
/external/llvm-project/lldb/examples/python/
Dgdbremote.py1215 json_tree = json.loads(rsp)
1216 print(json.dumps(json_tree, indent=4, separators=(',', ': ')))