Home | History | Annotate | Download | only in base

Lines Matching refs:HostPortPair

15 HostPortPair::HostPortPair() : port_(0) {}
16 HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port)
20 HostPortPair HostPortPair::FromURL(const GURL& url) {
21 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort());
25 HostPortPair HostPortPair::FromAddrInfo(const struct addrinfo* ai) {
26 return HostPortPair(NetAddressToString(ai),
30 std::string HostPortPair::ToString() const {
34 std::string HostPortPair::HostForURL() const {