Home
last modified time | relevance | path

Searched refs:json_tree (Results 1 – 2 of 2) 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);