HomeSort by relevance Sort by last modified time
    Searched defs:HostPortPair (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/net/base/
host_port_pair.cc 17 HostPortPair::HostPortPair() : port_(0) {}
18 HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port)
22 HostPortPair HostPortPair::FromURL(const GURL& url) {
23 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort());
27 HostPortPair HostPortPair::FromIPEndPoint(const IPEndPoint& ipe) {
28 return HostPortPair(ipe.ToStringWithoutPort(), ipe.port())
    [all...]
host_port_pair.h 18 class NET_EXPORT HostPortPair {
20 HostPortPair();
22 HostPortPair(const std::string& in_host, uint16 in_port);
24 // Creates a HostPortPair for the origin of |url|.
25 static HostPortPair FromURL(const GURL& url);
27 // Creates a HostPortPair from an IPEndPoint.
28 static HostPortPair FromIPEndPoint(const IPEndPoint& ipe);
30 // Creates a HostPortPair from a string formatted in same manner as
32 static HostPortPair FromString(const std::string& str);
36 bool operator<(const HostPortPair& other) const
    [all...]
  /external/chromium_org/ppapi/proxy/
host_resolver_resource_base.h 22 struct HostPortPair {
53 void SendResolve(const HostPortPair& host_port,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetSocketAddressTest.java 44 HostPortPair[] legalHostPortPairs = { new HostPortPair("127.0.0.1", 1234),
45 new HostPortPair("192.168.0.1", 10000), new HostPortPair("127.0.0", 0),
46 new HostPortPair("127.0.0", 65535),
47 new HostPortPair("strange host", 65535) };
62 HostPortPair[] illegalHostPortPairs = { new HostPortPair(null, 1),
63 new HostPortPair("host", -1), new HostPortPair("host", 65536) }
    [all...]

Completed in 60 milliseconds