Searched defs:IPEndPoint (Results 1 - 3 of 3) sorted by path

/external/chromium_org/extensions/browser/api/socket/
H A Dudp_socket.h37 virtual bool GetPeerAddress(net::IPEndPoint* address) OVERRIDE;
38 virtual bool GetLocalAddress(net::IPEndPoint* address) OVERRIDE;
57 // Make net::IPEndPoint can be refcounted
58 typedef base::RefCountedData<net::IPEndPoint> IPEndPoint; typedef in class:extensions::UDPSocket
62 scoped_refptr<IPEndPoint> address,
/external/chromium_org/net/base/
H A Dip_endpoint.cc24 IPEndPoint::IPEndPoint() : port_(0) {} function in class:net::IPEndPoint
26 IPEndPoint::~IPEndPoint() {}
28 IPEndPoint::IPEndPoint(const IPAddressNumber& address, int port) function in class:net::IPEndPoint
32 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) { function in class:net::IPEndPoint
37 AddressFamily IPEndPoint
[all...]
H A Dip_endpoint.h20 // An IPEndPoint represents the address of a transport endpoint:
23 class NET_EXPORT IPEndPoint { class in namespace:net
25 IPEndPoint();
26 ~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;

Completed in 324 milliseconds