Home
last modified time | relevance | path

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

/external/grpc-grpc/src/core/ext/filters/client_channel/
Duri_parser.cc193 size_t authority_end = NOT_SET; in grpc_uri_parse() local
223 for (i = authority_begin; uri_text[i] != 0 && authority_end == NOT_SET; in grpc_uri_parse()
226 authority_end = i; in grpc_uri_parse()
229 if (authority_end == NOT_SET && uri_text[i] == 0) { in grpc_uri_parse()
230 authority_end = i; in grpc_uri_parse()
232 if (authority_end == NOT_SET) { in grpc_uri_parse()
236 path_begin = authority_end; in grpc_uri_parse()
278 decode_and_copy_component(uri_text, authority_begin, authority_end); in grpc_uri_parse()