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

  /external/chromium/net/base/
ip_endpoint.h 16 // An IPEndPoint represents the address of a transport endpoint:
19 class IPEndPoint {
21 IPEndPoint();
22 virtual ~IPEndPoint();
23 IPEndPoint(const IPAddressNumber& address, int port);
24 IPEndPoint(const IPEndPoint& endpoint);
52 bool operator<(const IPEndPoint& that) const;
53 bool operator==(const IPEndPoint& that) const;
ip_endpoint.cc 17 IPEndPoint::IPEndPoint() : port_(0) {}
19 IPEndPoint::~IPEndPoint() {}
21 IPEndPoint::IPEndPoint(const IPAddressNumber& address, int port)
25 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) {
30 int IPEndPoint::GetFamily() const
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/socket/
udp_socket.h 38 virtual bool GetPeerAddress(net::IPEndPoint* address) OVERRIDE;
39 virtual bool GetLocalAddress(net::IPEndPoint* address) OVERRIDE;
56 // Make net::IPEndPoint can be refcounted
57 typedef base::RefCountedData<net::IPEndPoint> IPEndPoint;
62 scoped_refptr<IPEndPoint> address,
  /external/chromium_org/net/base/
ip_endpoint.h 20 // An IPEndPoint represents the address of a transport endpoint:
23 class NET_EXPORT IPEndPoint {
25 IPEndPoint();
26 virtual ~IPEndPoint();
27 IPEndPoint(const IPAddressNumber& address, int port);
28 IPEndPoint(const IPEndPoint& endpoint);
64 bool operator<(const IPEndPoint& that) const;
65 bool operator==(const IPEndPoint& that) const;
ip_endpoint.cc 24 IPEndPoint::IPEndPoint() : port_(0) {}
26 IPEndPoint::~IPEndPoint() {}
28 IPEndPoint::IPEndPoint(const IPAddressNumber& address, int port)
32 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) {
37 AddressFamily IPEndPoint::GetFamily() const
    [all...]

Completed in 72 milliseconds