Home
last modified time | relevance | path

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

/external/cronet/net/base/
Dproxy_string_util.cc65 url::Component port_component; in FromSchemeHostAndPort() local
69 &hostname_component, &port_component); in FromSchemeHostAndPort()
81 if (port_component.is_valid() && port_component.is_empty()) in FromSchemeHostAndPort()
84 port_component.is_nonempty() in FromSchemeHostAndPort()
85 ? host_and_port.substr(port_component.begin, port_component.len) in FromSchemeHostAndPort()
Durl_util.cc204 url::Component port_component; in ParseHostAndPort() local
208 &port_component); in ParseHostAndPort()
218 if (port_component.is_nonempty()) { in ParseHostAndPort()
219 parsed_port_number = url::ParsePort(input.data(), port_component); in ParseHostAndPort()
227 if (port_component.len == 0) in ParseHostAndPort()
/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_server_id.cc26 url::Component port_component; in ParseFromHostPortString() local
31 &port_component); in ParseFromHostPortString()
35 !host_component.is_nonempty() || !port_component.is_nonempty()) { in ParseFromHostPortString()
44 url::ParsePort(host_port_string.data(), port_component); in ParseFromHostPortString()
/external/cronet/net/third_party/quiche/src/quiche/quic/core/http/
Dspdy_server_push_utils.cc138 url::Component port_component; in GetPushPromiseUrl() local
141 &password_component, &host_component, &port_component); in GetPushPromiseUrl()
162 if (port_component.is_nonempty()) { in GetPushPromiseUrl()
163 parsed_port_number = url::ParsePort(authority.data(), port_component); in GetPushPromiseUrl()