Searched refs:decode_and_copy_component (Results 1 – 1 of 1) sorted by relevance
/external/grpc-grpc/src/core/ext/filters/client_channel/ |
D | uri_parser.cc | 60 static char* decode_and_copy_component(const char* src, size_t begin, in decode_and_copy_component() function 276 uri->scheme = decode_and_copy_component(uri_text, scheme_begin, scheme_end); in grpc_uri_parse() 278 decode_and_copy_component(uri_text, authority_begin, authority_end); in grpc_uri_parse() 279 uri->path = decode_and_copy_component(uri_text, path_begin, path_end); in grpc_uri_parse() 280 uri->query = decode_and_copy_component(uri_text, query_begin, query_end); in grpc_uri_parse() 282 decode_and_copy_component(uri_text, fragment_begin, fragment_end); in grpc_uri_parse()
|