Home
last modified time | relevance | path

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

/external/grpc-grpc/test/core/client_channel/
Duri_parser_test.cc63 GPR_ASSERT(nullptr == uri->query_parts_values[0]); in test_query_parts()
66 GPR_ASSERT(0 == strcmp("B", uri->query_parts_values[1])); in test_query_parts()
69 GPR_ASSERT(0 == strcmp("", uri->query_parts_values[2])); in test_query_parts()
72 GPR_ASSERT(nullptr == uri->query_parts_values[3]); in test_query_parts()
114 GPR_ASSERT(nullptr == uri->query_parts_values); in test_query_parts()
/external/grpc-grpc/src/core/ext/filters/client_channel/
Duri_parser.cc155 uri->query_parts_values = nullptr; in parse_query_parts()
162 uri->query_parts_values = in parse_query_parts()
176 uri->query_parts_values[i] = query_param_parts[1]; in parse_query_parts()
178 uri->query_parts_values[i] = nullptr; in parse_query_parts()
294 return uri->query_parts_values[i]; in grpc_uri_get_query_arg()
308 gpr_free(uri->query_parts_values[i]); in grpc_uri_destroy()
311 gpr_free(uri->query_parts_values); in grpc_uri_destroy()
Duri_parser.h36 char** query_parts_values; member